-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
76 lines (75 loc) · 2.26 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="./form-styles.css">
</head>
<body>
<div class="main-container">
<form action="results.html" method="GET" enctype="multipart/form-data">
<section class="contact">
<div>
<label for="name"><b>Name</b></label>
<input type="text" name="name" id="name" >
</div>
<div>
<label for="email"><b>Email</b></label>
<input type="email" name="email" id="email" >
</div><br>
<div>
<label for="date"><b>Select Birthdate for Birthday Wish</b></label>
<input type="date" name="date" id="date" min="2019-06-10">
</div>
</form>
</section>
<section class="hearaboutus">
<div>
<b>How did you hear about us?</b>
<div>
<label for="Classmate">Classmate</label>
<input type="checkbox" name="Classmate" id="Classmate">
</div>
<div>
<label for="Resume Submission">Resume Submission</label>
<input type="checkbox" name="Resume Submission" id="Resume Submission">
</div>
<div>
<label for="LinkedIn">LinkedIn</label>
<input type="checkbox" name="LinkedIn" id="LinkedIn">
</div>
<div>
<label for="Coding Academy Rec">Coding Academy Rec</label>
<input type="checkbox" name="Coding Academy Rec" id="Coding Academy Rec">
</div>
</div>
</section>
<section class="contactback">
<div>
<b>Would you like to be contacted back?</b>
<div>
<label for="Yes">Yes</label>
<input type="radio" name="contactback" id="yes" value="yes">
</div>
<div>
<label for="no">No</label>
<input type="radio" name="contactback" id="no" value="no">
</div>
</div>
</section>
<section class="last">
<div>
<label for="comments"><b>Comments</b></label>
<textarea id="comments" name="comments" minlength="20" maxlength="500"></textarea>
</div>
</section>
<section class="resetsubmit">
<button type="reset">Reset</button>
<button type="submit">Submit</button>
</form>
</section>
<!-- <script src="scripts.js"></script> -->
</div>
</body>
</html>