-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactpage.html
55 lines (44 loc) · 1.4 KB
/
contactpage.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Contact</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<header>
<a href="Aboutme.html">About Me</a>
<a href="contactpage.html">Contact</a>
<a href="registerpage.html">Register</a>
<a href="loginpage.html">Login</a>
<a href="calculator.html">Calculator</a>
</header>
</div>
<div class="container">
<form action="">
<div>
<label for="name"> Name</label>
<input type="text" id="name" name="name" placeholder="Your name.." required>
</div>
<div><label for="email">Email address</label>
<input type="email" id="email" name="email" placeholder="Your email.." required>
</div>
<div><label for="message">Message</label>
<textarea id="message" name="message" placeholder="Write something.." style="height:100px" required></textarea >
</div>
<div><label for="priority">Priority</label>
<select name="priority" required>
<option value="critical">Low</option>
<option value="important">Normal</option>
<option value="normal">Important</option>
<option value="low">Critical</option>
</select>
</div>
<input type="submit" value="Submit">
</form>
</div>
<script src="script.js"></script>
</body>
</html>