-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathcontact.html
More file actions
37 lines (34 loc) · 1.02 KB
/
contact.html
File metadata and controls
37 lines (34 loc) · 1.02 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
<!DOCTYPE html>
<html>
<body>
<h1>Contact Me</h1>
<form action="mailto:lkimanzi@hotmail.com">
First Name:<br>
<input type="text" name="name"><br>
Last Name:<br>
<input type="text" name="name"><br>
Contact Number:<br>
<input type="text" name="name"><br>
<p>Please select phone type:</p>
<input type="radio" id="LandLine" name="Landline" value="Landline">
<label for="Landline">Landline</label><br>
<input type="radio" id="Cellphone" name="Cellphone" value="Cellphone">
<label for="Cellphone">Cellphone</label><br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
<label for="Reason for contact">Choose a skill:</label>
<select name="Windows" id="Windows">
<option value="Linux">Linux</option>
<option value="Network">Network</option>
<option value="Web">Web</option>
<option value="VM">VM</option>
</select>
<br><br>
Message:<br>
<input type="text" name="comment" height: 40px; width:280px;><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>