Skip to content

Instantly share code, notes, and snippets.

@blackout314
Forked from oliveratgithub/made-with-love.html
Created February 11, 2020 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blackout314/c347c4438b4bd21b5d0a1616491be88a to your computer and use it in GitHub Desktop.
Save blackout314/c347c4438b4bd21b5d0a1616491be88a 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