-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.html
More file actions
30 lines (27 loc) · 832 Bytes
/
header.html
File metadata and controls
30 lines (27 loc) · 832 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
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Test html</title>
<script src="main.js" defer></script>
</head>
<body>
<header>
<div class="header__div">
<a href="index.html" class="header__logo"><img src="assets\logo-biograf_regna.png" style="height: 130px" alt="Logotype for
Folkets Bio" /></a>
<nav>
<ul>
<li><a href="filmer.html">Filmer</a></li>
<li><a href="about-us.html">Om oss</a></li>
<li><a href="event.html">Evenemang</a></li>
<li><a href="tickets.html">Biljetter</a></li>
<li><a href="">English</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>