| 1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel="stylesheet" href="normalize.css">
- <link rel="stylesheet" href="style.css">
- <title>Document</title>
- </head>
- <body class="body-- nodebug">
- <h1>Simple button</h1>
- <button class="button">Button</button>
- <a href="#" class="button">Link as a Button</a>
- <h1>Collection of buttons</h1>
- <button class="button">Primary</button>
- <button class="button button--secondary">Secondary</button>
- <button class="button button--success">Success</button>
- <button class="button button--danger">Danger</button>
- <button class="button button--warning">Warning</button>
- </body>
- </html>
|