theenglishway (time) пре 6 година
родитељ
комит
a4fd86e869
1 измењених фајлова са 42 додато и 0 уклоњено
  1. 42 0
      index.html

+ 42 - 0
index.html

@@ -0,0 +1,42 @@
+<!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>
+  </ul>
+</body>
+</html>