-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.html
45 lines (45 loc) · 1.35 KB
/
4.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/css.css">
<link rel="stylesheet" href="css/css2.css">
<link rel="stylesheet" href="css/css4.css">
<meta charset="UTF-8">
<title>Contact</title>
</head>
<body>
<aside>
<nav class="hamburger"> <!-- Nav ist so verschachtelt da immer nur eine <nav> sichtbar ist, entweder .hampre oder .hampost -->
<nav class="hampre" tabindex="0">
<i></i>
<i></i>
<i></i>
</nav>
<nav class="hampost" style="display: none;">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="2.html">About us</a></li>
<li><a href="3.html">The team</a></li>
<li><a href="4.html">Contact</a></li>
</ul>
</nav>
</nav>
</aside>
<main>
<h2><i class="primary">Contact</i> us</h2>
<div class="errors"></div>
<form action="#">
<input type="text" class="share" placeholder="Name">
<input type="text" class="share" placeholder="Surname">
<input type="text" class="share" placeholder="E-mail">
<input type="text" class="share" placeholder="Subject">
<textarea></textarea>
<input type="submit" value="Send">
</form>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/ham.js"></script>
<script src="js/val.js"></script>
</body>
</html>