-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresumeform.html
More file actions
61 lines (40 loc) · 2.03 KB
/
resumeform.html
File metadata and controls
61 lines (40 loc) · 2.03 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<body>
<fieldset>
<form>
<label for="fname"> First Name</label>
<input type="text" id="fname" name="fname" maxlength="30"><br>
<label for="lastname">Last name:</label>
<input type="text" id="lname" name="lname" maxlength="30"><br>
<label for="contactphonenumber"> Contact Phone Number</label>
<input type="text" id="contactphonenumber" name="contactphonenumber"><br>
<label> Phone Number Type</label>
<input type="radio" name="Phonenumbertype" value="landline" maxlength="10"><label>Landline</label>
<input type="radio" name="Phonenumbertype" value="mobile" maxlength="10"><label>Mobile</label> <br>
<label for="contactemail"> Contact Email</label>
<input type="text" id="contactemail" name="contactemail" maxlength="50"> <br>
<section>
<label for="">How did you hear about us? </label>
<select id="howdidyouhearaboutus" name="howdidyouhearaboutus">
<option value="search_engine"> Search Engine</option>
<option value="social_media"> Social Media</option>
<option value="recruiter">Recruiter</option>
</select> <br>
</section>
<section>
<label>Interest for contacting</label><br>
<input type="checkbox" name="skillset" value="Rails">
<label for="rails">Rails</label><br>
<input type="checkbox" name="skillset" value="Wordpress">
<label for="Wordpress">Word Press</label><br>
<input type="checkbox" name="skillset" value="python">
<label for="python">Python</label><br>
<label for="message">Message</label><br>
<textarea id="message" name="message" maxlength="250"> </textarea><br>
<button form="submit">Submit</button>
</section>
</form>
</fieldset>
</body>
</html>