-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (33 loc) · 1.47 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Classroom Opdracht</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<aside class="sidebar"> <!--Deze aside voegt de sidebar toe-->
<nav class="navigatie">
<ul>
<li><a onclick="window.location.href='index.html';">Home</a></li>
<li><a onclick="window.location.href='skills.html';">About</a></li>
<li><a onclick="window.location.href='contact.html';">Contact</a></li>
</ul>
</nav>
</aside>
<main class="main-content">
<form> Contact formulier <!--formulier om email te sturen met contact gegevens en onderwerp/reden-->
<br>
<form action="">
<label for="name"></label><br>
<input type="text" id="name" placeholder="Naam"><br>
<input type="text" id="subject" placeholder="Onderwerp"><br>
<input type="text" id="number" placeholder="Telefoonnummer"><br>
<input type="text" id="email" placeholder="Email"><br>
<input type="text" id="tekst" placeholder=""><br><br>
<input type="submit" value="Versturen" class="inleveren">
</form>
</main>
</body>
</html>