-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact Page.html
65 lines (57 loc) · 1.78 KB
/
Contact Page.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
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Page</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="navigation">
<div class="logo">
<h1>OyinA.</h1>
</div>
<nav class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Contact Page.html">Contact Page</a></li>
<li><a href="Register Page.html">Register Page</a></li>
<li><a href="Login Page.html">Login Page</a></li>
<li><a href="calculator.html">My Calculator</a></li>
</ul>
</nav>
</div>
<h1>My Contact Details📱</h1>
<p>Tel📞: +234 810 328 6788</p>
<p>Email💌: [email protected]</p>
<hr>
<div id="contact">
<h2>Contact Section</h2>
<form class="form" enctype="text/plain">
<div class="input-area">
<label>Name:</label>
<input type="text" name="" value="Enter your full name"><br>
</div>
<div class="input-area">
<label>Email:</label>
<input type="email" name="" value="Enter your email address"><br>
</div>
<div class="input-area">
<label>Message:</label><br>
<textarea name="yourMessage" rows="10" cols="50">Type your message here </textarea><br>
</div>
<div class="input-area">
<label for="Priority">Message Priority</label>
<select name="priority">
<option value="none" selected>Priority</option>
<option value="high">High</option>
<option value="low">Low</option>
<option value="other">Other</option>
</select><br>
</div>
<div class="action">
<input type="submit" value="Send Message">
</div>
</div>
</form>
</body>
</html>