-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
48 lines (39 loc) · 1.5 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
<!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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table border="1px solid black">
<tr >
<th><img src="images/logo.jpg" alt="logo"></th>
<th class="tHeading"><a href="home.html">Home</a></th>
<th class="tHeading"><a href="About.html">About</a></th>
<th class="tHeading"><a href="Gallery.html">Gallery</a></th>
<th class="tHeading"><a href="Contact.html">Contact</a></th>
<th class="tHeading"><a href="Login.html">Login</a></th>
<th class="tHeading"><a href="Register.html">Register</a></th>
</tr>
</table>
<hr>
<center>
<h1>This is Contact Page</h1>
<hr>
<h2>How Can we help you?</h2>
<p>We will be happy to help you. Fill out the form and we will get back to you shortly</p>
<hr>
<br>
<form >
Name *: <input type="name" placeholder="Full Name"><br> <br>
Email: <input type="email" placeholder="Email"><br> <br>
Subject *: <input type="text" placeholder="Subject"><br> <br>
<textarea cols="50" rows="10" placeholder="Your Question / Query / Message *"></textarea> <br> <br>
<input type="submit">
</form>
<hr>
<p>Copyright © 2021. All rights are reserverd.</p>
</center>