-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 1.82 KB
/
index.html
File metadata and controls
57 lines (57 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mobile Bottom Navigation</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/856a04ad70.js"
crossorigin="anonymous"
></script>
</head>
<body>
<section id="start"><h1>Start</h1></section>
<section id="produkte"><h2>Produkte</h2></section>
<section id="ueberuns"><h1>Über uns</h1></section>
<section id="kontakt"><h1>Kontakt</h1></section>
<section id="infos"><h1>Infos</h1></section>
<div class="navigation">
<ul>
<li class="start active">
<a href="#start">
<span class="icon"><i class="fas fa-home"></i></span>
<span class="text">Start</span>
</a>
</li>
<li class="produkte">
<a href="#produkte">
<span class="icon"><i class="fas fa-image"></i></span>
<span class="text">Produkte</span>
</a>
</li>
<li class="ueberuns">
<a href="#ueberuns">
<span class="icon"><i class="fas fa-users"></i></span>
<span class="text">Über uns</span>
</a>
</li>
<li class="kontakt">
<a href="#kontakt">
<span class="icon"><i class="fas fa-address-card"></i></span>
<span class="text">Kontakt</span>
</a>
</li>
<li class="infos">
<a href="#infos">
<span class="icon"><i class="fas fa-info-circle"></i></span>
<span class="text">Infos</span>
</a>
</li>
<div class="bubble"></div>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>