-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactme.html
More file actions
29 lines (27 loc) · 857 Bytes
/
Copy pathcontactme.html
File metadata and controls
29 lines (27 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<form class="" action="index.html" method="post">
<p>
<label for="">Your Name:</label>
<input type="text" name="" value="">
<input type="color" name="" value=""><br>
</p>
<label for="">Do you want to sign up to the email list?</label>
<input type="checkbox" name="" value=""><br>
<p>
<label for="email">Your email:</label>
<input type="email" id="email" pattern=".+@globex.com" size="40" required><br>
</p>
<label for="start">Birthday:</label>
<input type="date" id="start" name="trip-start" value="2018-07-22" min="1900-01-01">
<p>
<input type="submit" name="">
</p>
</form>
</body>
</html>