-
-
Save cloudcap10/af55dd6330205ae87f5197c77ee2aa19 to your computer and use it in GitHub Desktop.
Various HTML-snippets to add "Made with love" to your website
This file contains hidden or 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment