about summary refs log tree commit diff
path: root/usth/ICT3.2/prac/1/task10.html
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT3.2/prac/1/task10.html')
-rw-r--r--usth/ICT3.2/prac/1/task10.html44
1 files changed, 44 insertions, 0 deletions
diff --git a/usth/ICT3.2/prac/1/task10.html b/usth/ICT3.2/prac/1/task10.html
new file mode 100644
index 0000000..04750d3
--- /dev/null
+++ b/usth/ICT3.2/prac/1/task10.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<style>
+body { margin: 0; }
+div {
+    box-shadow:
+        -1vmin 0 0 0 #2f528f inset,
+        1vmin 0 0 0 #2f528f inset,
+        0 1vmin 0 0 #2f528f inset,
+        0 -1vmin 0 0 #2f528f inset;
+}
+.container { background: #c5e0b8 }
+.header {
+    height: 20vh;
+    background-color: #4472c4; 
+}
+.wrapper:after {
+    content: '';
+    display: block;
+    height: 0;
+    clear: both;
+    visibility: hidden;
+}
+.nav {
+    width: 25%;
+    height: 70vh;
+    background: #dbdbdb;
+}
+.footer {
+    height: 10vh;
+    background-color: #4472c4; 
+}
+</style>
+
+<body>
+  <div class=container>
+    <div class=header></div>
+    <div class=wrapper>
+      <div class=nav></div>
+      <div class=section></div>
+    </div>
+    <div class=footer></div>
+  </div>
+</body>
+</html>