-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
57 lines (41 loc) · 1.57 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
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="justin.js"></script>
<script src="js/bootstrap.js"></script>
<link rel="stylesheet" href="./css/bootstrap.css">
</head>
<body>
<div data-template="header.html"></div>
<!-- Wrapper container -->
<div class="container py-4">
<h1>Dit is Justin zijn contact pagina</h1>
<!-- Bootstrap 5 starter form -->
<form id="contactForm">
<!-- Name input -->
<div class="mb-3">
<label class="form-label" for="name">Naam</label>
<input class="form-control" id="name" type="text" placeholder="Name" />
</div>
<!-- Email address input -->
<div class="mb-3">
<label class="form-label" for="emailAddress">Email</label>
<input class="form-control" id="emailAddress" type="email" placeholder="Email Address" />
</div>
<!-- Message input -->
<div class="mb-3">
<label class="form-label" for="message">Bericht</label>
<textarea class="form-control" id="message" type="text" placeholder="Message"
style="height: 10rem;"></textarea>
</div>
<!-- Form submit button -->
<div class="d-grid">
<button class="btn btn-primary btn-lg" type="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>