buttons.html 792 B

1234567891011121314151617181920212223242526
  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. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="normalize.css">
  8. <link rel="stylesheet" href="style.css">
  9. <title>Document</title>
  10. </head>
  11. <body class="body-- nodebug">
  12. <h1>Simple button</h1>
  13. <button class="button">Button</button>
  14. <a href="#" class="button">Link as a Button</a>
  15. <h1>Collection of buttons</h1>
  16. <button class="button">Primary</button>
  17. <button class="button button--secondary">Secondary</button>
  18. <button class="button button--success">Success</button>
  19. <button class="button button--danger">Danger</button>
  20. <button class="button button--warning">Warning</button>
  21. </body>
  22. </html>