Instantly share code, notes, and snippets.

Embed
What would you like to do?
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
@Fredo-XVII

This comment has been minimized.

Copy link

Fredo-XVII commented Apr 4, 2018

I'm not a CS major, could you explain how to make the heart in the first example? Is it just <3?

@oliveratgithub

This comment has been minimized.

Copy link
Owner

oliveratgithub commented Apr 4, 2018

@Fredo-XVII the ❤️ in the first example is actually the real Unicode emoji. You can copy it e.g. from https://getemoji.com/

@jpcmf

This comment has been minimized.

Copy link

jpcmf commented Apr 17, 2018

Thank you! :)

@WebDeveloper-Sravan

This comment has been minimized.

Copy link

WebDeveloper-Sravan commented Jun 30, 2018

Thank you

@Edward-Aidi

This comment has been minimized.

Copy link

Edward-Aidi commented Nov 19, 2018

Thanks a lot!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment