-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactUs.html
55 lines (55 loc) · 1.5 KB
/
contactUs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact Us</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body style="margin: 0 auto; max-width: 900px; padding: 30px 25px">
<form>
<table>
<tr>
<td>First Name:</td>
<td><input type="text" name="fname"></td>
</tr>
<tr>
<td>Last Name:</td>
<td><input type="text" name="lname"></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text" name="myTextInput"></td>
</tr>
<tr>
<td>Type of License:</td>
<td><input type="radio" name="answer" value="Business" checked/>Business
<input type="radio" name="answer" value="Personal">Personal
</td>
</tr>
<tr>
<td>Reason:</td>
<td>
<select name="reasontext">
<option value="Software Support">Software Support</option>
<option value="Hardware Support">Hardware Support</option>
<option value="Information Request">Information Request</option>
</select></td>
</tr>
<tr>
<td>Additional information:</td>
<td>
<textarea name="comments" rows="6" cols="20"></textarea>
</td>
</tr>
<tr>
<td><input type="checkbox" name="myChoice" value=""></td>
<td style="text-align: left">I have read the terms of the service</td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Send Request"></td>
</tr>
</table>
</form>
</body>
</html>