-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (95 loc) · 4.1 KB
/
Copy pathindex.html
File metadata and controls
119 lines (95 loc) · 4.1 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!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 class="active"><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><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 class="active"><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><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>
<!-- NEWSLETTERBEREICH -->
<section class="newsletter-bereich">
<div class="container">
<div class="row">
<div class="col-4">
<p id="nl-text"><span class="wichtiger-text">Melde dich für den Newsletter an und bleibe informiert was hier so passiert!</span></p>
</div>
<div class="col-2">
<form action="index.html" method="post">
<label class="screenreader" for="nl-email">E-Mail</label>
<input class="nl-email-input" id="nl-email" type="text" name="email" placeholder="E-Mail Addresse" pattern="(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])" title="gültige E-Mail Adresse">
<button class="btn-typ1" id="nl-btn" type="submit" name="submit-button">Anmelden</button>
</form>
</div>
</div>
</div>
</section>
<!-- GRID - System
<div class="container border">
<div class="row">
<div class="col-1"><p>col-1</p></div>
<div class="col-1"><p>col-1</p></div>
<div class="col-1"><p>col-1</p></div>
<div class="col-1"><p>col-1</p></div>
<div class="col-1"><p>col-1</p></div>
<div class="col-1"><p>col-1</p></div>
</div>
<div class="row">
<div class="col-2"><p>col-2</p></div>
<div class="col-2"><p>col-2</p></div>
<div class="col-2"><p>col-2</p></div>
</div>
<div class="row">
<div class="col-3"><p>col-3</p></div>
<div class="col-3"><p>col-3</p></div>
</div>
<div class="row">
<div class="col-6"><p>col-6</p></div>
</div>
</div> -->
</body>
</html>