-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.html
More file actions
69 lines (55 loc) · 2.08 KB
/
Copy pathcode.html
File metadata and controls
69 lines (55 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Impressum</title>
<link rel="stylesheet" type="text/css" href="src/css/styles.css">
</head>
<body>
<!-- NAVIGATIONSLEISTE -->
<nav class="header-nav">
<div class="container desktop-nav">
<div class="row">
<div class="col-6">
<a href="index.html" >
<img src="src/img/btby_logo.jpg" alt="bethebestyou_logo">
</a>
<ul>
<li><a href="index.html">#bethebestyou</a></li>
<li><a href="exersice.html">Exercise</a></li>
<li><a href="social.html">Social</a></li>
<li><a href="recommendations.html">Recommendations</a></li>
<li class="active"><a href="code.html">Code</a></li>
<li><a href="impressum.html">Impressum</a></li>
</ul>
</div>
</div>
</div>
<div class="container mobile-nav">
<div class="row">
<div class="col-6">
<a href="index.html" >
<img src="src/img/btby_logo.jpg" alt="bethebestyou_logo">
</a>
<div class="mobile-nav-dropdown clearfix">
<div class="mobile-nav-button"><span>≡</span></div>
<div class="mobile-nav-content clearfix">
<ul>
<li><a href="index.html">#bethebestyou</a></li>
<li><a href="exersice.html">Exercise</a></li>
<li><a href="social.html">Social</a></li>
<li><a href="recommendations.html">Recommendations</a></li>
<li class="active"><a href="code.html">Code</a></li>
<li><a href="impressum.html">Impressum</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- HEADER - BANNER -->
<header class="header-banner"></header>
</body>
</html>