You can implement beautiful Font Icons at Font Awesome
To implement an icon: (make sure to include script
in head
)
<head>
<script
src="<https://kit.fontawesome.com/c2f2580cbe.js>"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Wrapped with a `span` class to modify the icon -->
<span class="icon">
<!-- `fa-2x` means double the size -->
<i class="fas fa-poop fa-2x"></i>
</span>
</body>
To style an icon:
.icon {
color: brown;
font-size: 2rem;
}