-
-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.39 KB
/
Copy pathindex.html
File metadata and controls
51 lines (48 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="favicon.png">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>DOM</title>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__container">
<a href="#" class="header__logo"><img src="img/logo.png" alt="Logotipe">
<p>Kottans Front-End Courses</p>
</a>
<div class="header__title">7. Document Object Model practice</div>
<div class="menu__icon icon-menu">
<div class="arrow-main">
<div></div>
</div>
<span></span>
</div>
</div>
</header>
<div class="page">
<div class="page__container">
<h1><a data-id="1" class="h1__link _active" href="# ">Slovenia is one of the most beautiful countries in Europe</a></h1>
<div class="page__body">
<aside class="page__menu menu">
<aside class="menu__body">
<div class="menu__title">Slovenian attractions</div>
<ul class="menu__list"></ul>
</aside>
</aside>
<main class="page__main main-module">
</main>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__copy-right">© 2023</div>
</footer>
</div>
</body>
<script type="module" src="js/script.js"></script>
</html>