-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvent.html
More file actions
41 lines (37 loc) · 1.3 KB
/
Event.html
File metadata and controls
41 lines (37 loc) · 1.3 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="background_styles.css">
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
<title>Nav Bar</title>
</head>
<body>
<nav class="navbar">
<div class="brand-title">Nav Bar</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="Event.html">Event</a></li>
</ul>
</div>
</nav>
<h4 class="event">Event</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Error accusamus rem sed
voluptates corrupti architecto impedit veritatis corporis facere, repellat aliquam inventore ullam
cupiditate perferendis ipsam itaque, voluptatem quam vero.</p>
<footer>
<p>
<a href="Contact.html" class="hrefHome">Kontakt</a> <a href="About.html" class="hrefHome">Impressum</a> Datenschutz
</p>
</footer>
</div>
</body>
</html>