forked from froilan-miranda/RR-JS-HTML-Resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresumeinput.html
More file actions
54 lines (42 loc) · 1.78 KB
/
resumeinput.html
File metadata and controls
54 lines (42 loc) · 1.78 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
<!Doctype html>
<html>
<head>
<meta charset="utf8">
<title>HTML FORMS</title>
</head>
<body>
<form action="index.html" method="post">
<label for="First name">First Name:</label>
<input type=text id="First Name" name="user_firstname">
<label for="lastName">Last Name:</label>
<input type="text" id="lastName" name="user_Lastname">
<label for="phone">Contact Phone:</label>
<input type="text" id="phone" name="user_phone">
<div>
<p>Phone Type</p>
<input type="radio" id="land line" name="type">
<label for="landline">landline</label>
<input type="radio" id="mobile" name="type">
<label for="mobile">mobile</label>
</div>
<br> <br> <br>
<label for="Email">email</label>
<input type="Email" id="Contact" name="user_email"> <br><br>
<form action="index.html" method="post">
<label for="about">How did you hear about us:</label>
<select name="hear" id="about-select">
<option value="">--Please choose an option--</option>
<option value="About">Search Engine</option>
<option value="Social">Social Media</option>
<option value="Recruiter">Recruiter</option>
</select>
<h3>interest for contacting</h3><br>
<input type="checkbox" id="teacher" name="teacher" value="teacher">
<label for="teacher"></label>Html Teacher </label><br>
<input type="checkbox" id="web" name="web" value="web">
<label for="web">Web Developer </label><br>
<input type="checkbox" id="tutor" name="tutor" value="tutor">
<label for="contact">Web Design Tutor</label>
</body>
<footer>
</footer>