-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (33 loc) · 1.24 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ru">
<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" />
<meta name="description" content="JavaScript homework" />
<meta name="keywords" content="JavaScript, homework" />
<link rel="shortcut icon" type="image/x-icon" href="./favicon.png" />
<title>Страница навигации</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: #fff;
color: #424242;
line-height: 1.5;
}
</style>
</head>
<body>
<ul>
<li><a href="task-01.html">Задание 1</a></li>
<li><a href="task-02.html">Задание 2</a></li>
<li><a href="task-03.html">Задание 3</a></li>
<li><a href="task-04.html">Задание 4</a></li>
<li><a href="task-05.html">Задание 5</a></li>
<li><a href="task-06.html">Задание 6</a></li>
<li><a href="task-07.html">Задание 7</a></li>
<li><a href="task-08.html">Задание 8</a></li>
</ul>
</body>
</html>