forked from abhinavvarma7565/Hiippoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail.html
43 lines (26 loc) · 803 Bytes
/
email.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
<!DOCTYPE html>
<html lang="en">
<head>
<h1>Get in touch</h1>
</head>
<body>
<header id="top" class="header">
<div class="text-vertical-center">
<<form method="POST" name='email' action="emailsent.php">
<ul>
<ul><label for="subject">Complaint Subject</label></ul>
<ul><input type="text" name="subject" size="50" /></ul>
<ul><label for="message">Message</label></ul>
<ul><input type="text" name="message" size="50" /></ul>
<ul><label for="email">Your Service Provider or Institution:</label></ul>
<ul><select name="email">
<option value="[email protected]">AT&T</option>
<option value="[email protected]">SJSU</option>
</select></ul>
<ul><input type="submit" name="submit" value="Submit" /></ul>
</ul>
</form>
</div>
</header>
</body>
</html>