-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
28 lines (27 loc) · 767 Bytes
/
header.html
File metadata and controls
28 lines (27 loc) · 767 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="styles/header.css" rel="stylesheet">
<title>Header</title>
</head>
<body>
<header>
<div class="wrap">
<nav>
<div class="logo-container">
</div>
<div class="nav">
<ul>
<li><a href="#" >За нас</a></li>
<li><a href="#">Медия</a></li>
<li><a href="#">Софтуер </a></li>
<li><a href="#">Новини</a></li>
<li><a href="#">Контакти</a></li>
</ul>
</div>
</nav>
</div>
</header>
</body>
</html>