-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
60 lines (41 loc) · 2.16 KB
/
forms.html
File metadata and controls
60 lines (41 loc) · 2.16 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
</head>
<body>
<header class="bg dark">
<h1 class="text-center">Form</h1><br>
</header>
<style>
</style>
<span class="border border-dark" .m1></span>
<form>
<label for="name">First Name</label>
<input type="text" id="name" name="name"><div>
<label for="name">Last Name</label>
<input type="text" id="name" name="name"></div> <br>
<label for="contact">Contact Phone Number</label>
<input type="text" id="Contact Phone Number" name="name">
<label><small>Phone Number Type</label>
<input type="radio" name="Phonenumbertype" value="Land Line"> <label>Landline</label>
<input type="radio" name="Phonenumbertype" value="Cell"> <label>Cell</label></small><div>
<label>Contact Email</label>
<input type="text" id="Contact Emailr" name="contactemail"></div><br>
<label for="howdidyouhearaboutus"><div>How Did You Hear About Us</label></div>
<select name="howdidyouhearaboutus" id="howdidyouhearaboutus">
<option value="search Engine">Search Engine</option>
<option value="socail Media">Social Media</option>
<option value="Recruiter">Recruiter</option>
</select>
<label>interest For Contacting</label><br>
<input type="text" id="Interest for contacting" name="interestforcontacting"><br>
<label>Skill Set</label><br>
<input type="checkbox" name="skillset1" value="manager"><label>Manager</label><br>
<input type="checkbox" name="skillset2" value="marketing"><label>Marketing</label><br>
<input type="checkbox" name="skillset3" value="webdesign"><label>Web Design </label><br>
</span>
</label>
</form>
</body>
</html>