HTML ICONS
The <i>
and <span>
elements are widely used to add icons.
icons that can be customized with CSS (size, color, shadow, etc.)
Icon libraries
- Font Awesome
- Bootstrap Icons
- Google font
- Go to fontawesome.com
- Sign in to get a code to use in your web pages.
<! DOCTYPE html> <html> <head> <title> Icons </title> <script src="https://kit.fontawesome.com.js"></script> </head> <body> <i class="fas fa-band-aid"></i> <body> <html> |