Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Buttons CSS</title>
  7. <link rel="stylesheet" href="./style.css">
  8. </head>
  9. <body>
  10. <section>
  11. <h2>Normal Buttons</h2>
  12. <a class="button">Learn More</a>
  13. <button class="button">Learn More</button>
  14. <button class="button hover">Learn More</button>
  15. </section>
  16. <section>
  17. <h2>Filled Buttons</h2>
  18. <a class="button fill">Learn More</a>
  19. <button class="button fill">Learn More</button>
  20. <button class="button fill hover">Learn More</button>
  21. </section>
  22. <section>
  23. <h2>Icon buttons</h2>
  24. <a class="button fill">
  25. <i class="fas fa-arrow-down"></i>
  26. Download
  27. </a>
  28. <button class="button fill">
  29. <i class="fas fa-arrow-down"></i>
  30. Download
  31. </button>
  32. <button class="button fill hover">
  33. <i class="fas fa-arrow-down"></i>
  34. Download
  35. </button>
  36. </section>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement