-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
52 lines (50 loc) · 1.55 KB
/
contact.html
File metadata and controls
52 lines (50 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<ul id="list_one">
<li><a href="about.html">About Me</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
</ul>
<div class="contact">
<form action="">
<label for="name">Name:</label> <br>
<input class="text_box"
type="text"
id="name"
name="name"
placeholder="Spongebob Squarepants"
/>
<br /><br />
<label for="email">Email:</label><br>
<input class="text_box"
type="email"
id="email"
name="email"
placeholder="ssquarepants@example.com"
/>
<br /><br />
<label for="message" id="msg_text">Message:</label>
<br>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
<br><br>
<label for="priority">Priority:</label>
<select name="priority" id="priority">
<option value="high">High</option>
<option value="medium">Medium</option>
<option value="low">Low</option>
</select>
<br><br>
<input class="button" type="button" value="Submit">
</form>
</div>
</body>
</html>