-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
78 lines (76 loc) · 2.13 KB
/
contact.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
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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>Contact</title>
<style>
th {
min-width: 100px;
}
</style>
</head>
<body>
<header>
<nav>
<center>
<table border="1px">
<tr>
<th>
<a href="index.html"
><img
src="Images/saylani-logo.png"
alt="Saylani logo"
width="150px"
/></a>
</th>
<th><a href="index.html">Home</a></th>
<th><a href="about.html">About</a></th>
<th><a href="gallery.html">Gallery</a></th>
<th><a href="media.html">Media</a></th>
<th><a href="contact.html">Contact</a></th>
<th><a href="login.html">Login</a></th>
<th><a href="register.html">Register</a></th>
</tr>
</table>
</center>
</nav>
</header>
<center>
<hr />
<h1>This is Contact Page</h1>
<hr />
<h2>How Can We Help?</h2>
<p>
We will happy to help you. Fill out the form and we'll get back to you
shortly.
</p>
<hr />
<form action="" method="">
<label for="Name">Name*:</label>
<input type="text" id="Name" name="Name" />
<br /><br />
<label for="Email">Email*:</label>
<input type="email" id="Email" name="Email" />
<br /><br />
<label for="Subject">Subject*:</label>
<input type="text" id="Subject" name="Subject" />
<br /><br />
<textarea
name="Comments"
id="CommentBox"
cols="50"
rows="10"
placeholder="Your Question / Query / Message *"
></textarea>
<br /><br />
<button value="submit">Send Message</button>
</form>
<hr />
<footer>
<p>Copyright© 2021. All right reserved</p>
</footer>
</center>
</body>
</html>