-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticleTree.html
More file actions
38 lines (34 loc) · 1.05 KB
/
articleTree.html
File metadata and controls
38 lines (34 loc) · 1.05 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Сайт Гусева Олега</title>
<link rel="stylesheet" href="styleCommon.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"
integrity="sha384-tViUnnbYAV00FLIhhi3v/dWt3Jxw4gZQcNoSCxCIFNJVCx7/D55/wXsrNIRANwdD" crossorigin="anonymous">
</head>
<body class="light-theme">
<header>
<div class="profile">
<a class="name" href="./index.html">Гусев Олег</a>
<button id="themeToggle">🌙</button>
</div>
<nav>
<ul class="navigation" id="header">
</ul>
</nav>
</header>
<main>
</main>
<footer>
<nav>
<ul class="navigation" id="footer">
</ul>
</nav>
</footer>
</body>
<script src="./script.js"></script>
<script src="./article.js"></script>
<script src="./lightOrDark.js"></script>
</html>