# Made with Love Snippets
Here are several ways to put "Made with Love" on your webpage.
# Typing the Heart
# Unicode Character
Made with ❤ by Howar31
Made with ❤ by Howar31
1
# UTF-8 Miscellaneous Symbols
Made with ♥ by Howar31
Made with ♥ by Howar31
1
# HTML Entities
Made with ♥ by Howar31
Made with ♥ by Howar31
1
# Icon
Made with by Howar31
<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> by Howar31
1
2
2
Made with by Howar31
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/fontawesome.min.css" />
Made with <i class="fas fa-heart"></i> by Howar31
1
2
2
# Styling the Heart
# Inline-style
Made with ❤ by Howar31
Made with <span style="color: #e25555;">❤</span> by Howar31
1
# CSS-style
Made with ❤ by Howar31
<style>.heart{ color:#e25555; }</style>
Made with <span class="heart">❤</span> by Howar31
1
2
2