Browse Source

HW <07> "DOM: ДЗ" done

Vladimir 2 years ago
parent
commit
378333d5c9
3 changed files with 91 additions and 0 deletions
  1. 13 0
      HW 07/index.html
  2. 66 0
      HW 07/main.js
  3. 12 0
      HW 07/style.css

+ 13 - 0
HW 07/index.html

@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Document</title>
+    <link rel="stylesheet" href="style.css">
+</head>
+<body class="body">
+    <script src="main.js"></script>
+</body>
+</html>

File diff suppressed because it is too large
+ 66 - 0
HW 07/main.js


+ 12 - 0
HW 07/style.css

@@ -0,0 +1,12 @@
+.table {
+    border: 10px solid #ece9e0;
+    border-collapse: separate;
+    border-spacing: 10px;
+    border-radius: 10px;
+    background-color: #ece9e0;
+    table-layout: auto;
+}
+.table td {
+    padding: 5px;
+    background-color: #dad3bf;
+}