example.html 517 B

123456789101112131415161718192021
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="stylesheet" href="./../../reset.css">
  6. <link rel="stylesheet" href="./button.css">
  7. </head>
  8. <body>
  9. <div style="padding: 10px; background-color: gray;">
  10. <button class="btn">Button</button>
  11. <br><br>
  12. <button class="btn blue">Button</button>
  13. <br><br>
  14. <button class="btn green">Button</button>
  15. <br><br>
  16. <button class="btn red">Button</button>
  17. <br><br>
  18. <button class="btn white">Button</button>
  19. </div>
  20. </body>
  21. </html>