Advertisement
Tr22

Icons

Feb 22nd, 2020
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Font Awesome Icons</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <script src="https://kit.fontawesome.com/a076d05399.js"></script>
  7. <!--Get your own code at fontawesome.com-->
  8. </head>
  9. <body>
  10.  
  11. <p>Some Font Awesome icons:</p>
  12. <i class="fas fa-band-aid"></i>
  13. <i class="fas fa-cat"></i>
  14. <i class="fas fa-dragon"></i>
  15. <i class="far fa-clock"></i>
  16. <i class="fas fa-clock"></i>
  17.  
  18. <p>Styled Font Awesome icons (size, color, and shadow):</p>
  19. <i class="fas fa-clock" style="font-size:24px;"></i>
  20. <i class="fas fa-clock" style="font-size:36px;"></i>
  21. <i class="fas fa-clock" style="font-size:48px;color:red;"></i>
  22. <i class="fas fa-clock" style="font-size:60px;color:lightblue;text-shadow:2px 2px 4px #000000;"></i>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement