-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
77 lines (68 loc) · 1.46 KB
/
about.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ДЗ 5</title>
</head>
<body style="margin: 0">
<header>
<nav>
<ul>
<li><a href="index.html">Главная</a></li>
<li><a href="workers.html">Список сотрудников</a></li>
<li><a href="best_worker.html">Сотрудник месяца</a></li>
<li><a href="add_worker.html">Добавить сотрудника</a></li>
<li id="about"><a href="about.html">О нас</a></li>
</ul>
</nav>
</header>
<main>
<h1>Разработчик - Юнусбаев Руслан</h1>
<p>Сделано в рамках прохождения стажировки в it-code.</p>
</main>
</body>
</html>
<style>
* {
margin: 0;
padding: 0;
}
header {
height: 35px;
}
nav {
height: 35px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
height: 35px;
background-color: rebeccapurple;
position: fixed;
top: 0;
overflow: hidden;
}
li {
float: left;
border-right: 1px solid white;
}
li a {
display: block;
color: white;
text-align: center;
text-decoration: none;
padding: 8px 16px;
}
li a:hover {
background-color: mediumpurple;
}
#about {
float: right;
border-left: 1px solid white;
border-right: none;
}
</style>