-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactDetails.html
More file actions
41 lines (32 loc) · 1.11 KB
/
ContactDetails.html
File metadata and controls
41 lines (32 loc) · 1.11 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
<html>
<head>
<meta charset="utf-8">
<title> Contact Details</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3> Contact Details: </h3>
<p> My fictional address </p>
<p> 012345678</p>
<p> mymail@gmail.com </p>
<form enctype="text/plain" action="mailto:bartvdholst@hotmail.nl" method="post">
<!-- action geeft aan wat er gebeurt als je op submit drukt -->
<!-- geef inputs namen om ze door te geven naar de mail/action -->
<label>Your Name and Password:</label>
<br>
<input type="text" name="yourName" value="">
<input type="color" name="" value="">
<br>
<input type= "password" name="" value="">
<br>
<label>Do you want to sign up to the email list?</label>
<input type= "checkbox" name="" value=""><br>
<label>Your Email:</label>
<input type="email" name="yourEmail"><br>
<!-- email text field doet al wat validation checks -->
<label>Your message </label><br>
<textarea name="yourMessage" cols="30" rows="10"></textarea><br>
<input type= "submit">
</form>
</body>
</html>