| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!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">
- <title>Document</title>
- <style>
- body {
- display: flex;
- background-color: rgb(212, 234, 246);
-
- }
- .big {
- font-size: 2em;
- }
- .list {
- list-style: none;
- display: flex;
- flex-wrap: wrap;
- }
- a {
- text-decoration: none;
- color: inherit;
- }
- .list li {
- background-color: rgb(152, 224, 103);
- border-radius: 5px;
- margin: 0.3em;
- padding: 0.2em;
- }
- </style>
- </head>
- <body>
- <ul class="list big centered">
- <li><a href="/buttons/buttons.html">Buttons</a></li>
- <li><a href="/call-to-action/call-to-action.html">Call to action</a></li>
- <li><a href="/form/form.html">Forms</a></li>
- <li><a href="/media_object/media.html">Media object</a></li>
- <li><a href="/dropdown/dropdown.html">Dropdown menu</a></li>
- </ul>
- </body>
- </html>
|