Skip to content

Instantly share code, notes, and snippets.

@FottyM
Forked from oliveratgithub/made-with-love.html
Created February 17, 2018 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save FottyM/dad62f185765438925bb9b7997359077 to your computer and use it in GitHub Desktop.
Save FottyM/dad62f185765438925bb9b7997359077 to your computer and use it in GitHub Desktop.
Various HTML-snippets to add "Made with love" to your website
<!-- Example #1 - no styling -->
Made with ❤ in Switzerland
<!-- Example #2 - inline-styled ❤ -->
Made with <span style="color: #e25555;">&#9829;</span> in Switzerland
Made with <span style="color: #e25555;">&hearts;</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