-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.html
51 lines (47 loc) · 908 Bytes
/
menu.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>menu</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #f8f8f8;
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
header a {
color: #007bff;
text-decoration: none;
font-size: 12px;
}
.logo {
font-size: 24px;
font-weight: bold;
}
nav ul {
list-style-type: none;
display: flex;
}
nav ul li {
margin-right: 20px;
}
</style>
</head>
<body>
<header>
<div class="logo">GRADUX</div>
<nav>
<ul>
<li><a href="./subjects.html">Предмет</a></li>
<li><a href="./dictionary.html">Словарь</a></li>
<li><a href="./program.html">Программирование</a></li>
</ul>
</nav>
</header>
</body>
</html>