-
-
Save Spiritbocs/93145438c1b1c4193d7529f0015a5638 to your computer and use it in GitHub Desktop.
Various HTML-snippets to add "Made with love" to your website
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Example #1 - no styling --> | |
Made with ❤ in Switzerland | |
<!-- Example #2 - inline-styled ❤ --> | |
Made with <span style="color: #e25555;">♥</span> in Switzerland | |
Made with <span style="color: #e25555;">♥</span> in Switzerland | |
<!-- Example #3 - CSS-style class for ❤ --> | |
<style>.heart{color:#e25555;}</style> | |
Made with <span class="heart">❤</span> in Switzerland | |
<!-- Example #4 - external ❤-icon --> | |
<link rel="stylesheet" type="text/css" href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" /> | |
Made with <i class="icon ion-heart"></i> in Switzerland | |
<!-- Example #5 - REthinkify Examples ❤-icon --> | |
© 2020 <a href="https://rethinkify.net/">REthinkify</a> Made with <span style="color: #e25555;">♥</span> from our couch to yours! | |
© 2020 <a href="https://rethinkify.net/">REthinkify</a> | Proudly made with <span style="color: #e25555;">♥</span> from our couch to yours! - All rights reserved | |
<p>Powered by Bright Minds· Proudly made with ♥ in Carolina's. © 2020 <a href="https://rethinkify.net/">REthinkify</a>. All rights reserved</p> | |
<p>Powered by Bright Minds· Proudly made with ♥ in the Carolina's. © 2020 <a href="https://rethinkify.net/">REthinkify</a>. All rights reserved. An <a href="https://rethinkify.net" target="_blank" rel="noopener" title="REthinkify Team"><img src="https://i.imgur.com/pfj8aUe.png" width="66" height="15" caption="false" /></a>Team Effort.</p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment