-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
76 lines (73 loc) · 2.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
</head>
<body>
<header>
<table >
<tr>
<td colspan="1" align="center"> <a href="./index.html" target="_self" > <img src="./images/logo.jpeg"
alt="Abdullah Mall " width="80px" height="100px" /></a>
</td>
<td colspan="1" align="center"><a href="./index.html">Home</a></td>
<td colspan="1" align="center"> <a href="./Contact.html">Contact</a></td>
<td colspan="1" align="center"><a href="./aboutus.html">About us</a></td>
<td colspan="1" align="center"><button><a href="./login.html" target="_self"><b>Login</b></a></button></td>
<td colspan="1" align="center"><button><a href="./Signup.html" target="_self"><b>Signup</b></a></button></td>
</tr>
</table>
</header>
<main align="center">
<h2>Contact Us</h2>
<h4>Our Address:</h4>
<p>
Jail Road near KIPS College,<br/>
Faisalabad,Punjab,<br>
Pakistan.
</p>
<p><strong>Phone:</strong>0321-xxxxx51</p>
<strong>Email:</strong>
<a href="mailto:[email protected]">[email protected]</a>
<table align="center">
<tr>
<td>
<h3>Get in Touch</h3>
<form action="index.html" method="POST">
<table>
<tr>
<td align="left"><label for="name">Name</label></td>
<td align="left"><input type="text" id="name" name="name" required></td>
</tr>
<tr>
<td align="left"><label for="email">Email</label></td>
<td align="left"><input type="email" id="email" name="email" required></td>
</tr>
<tr>
<td align="left"><label for="subject">Subject</label></td>
<td align="left"><input type="text" id="subject" name="subject" required></td>
</tr>
<tr>
<td align="left"><label for="message">Message</label></td>
<td align="left"> <textarea id="message" name="message" rows="5" required></textarea></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="Send Message"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
<h4>Timing:</h4>
<p>Mondat to Thursday,Saturday 8:00AM-8:00PM</p>
<p>Friday:8:00AM - 12:00PM /3:00PM-8:00PM</p>
<p>Sunday:Closed</p>
</main>
<!--Footer start-->
<footer>
<p>© Abdullah Mall.All rights reserved.</p>
</footer>
</body>