-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·118 lines (109 loc) · 3.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<title>Tru Say Phones</title>
<meta charset="utf-8"/>
<meta name="description" content="Best Pay As You Go and Pay Monthly contract phones. We sell Blackberry, iPhone and Samsung phone models. Situated inside Uxbridge Shopping Centre">
<meta name="keywords" content="Tru Say Phones, Blackberry, iPhone, Samsung, Orange, EE, TMobile, TalkMobile, 02, Vodafone, Three, Offers, Pay As You Go, Pay Monthly, Uxbridge Shopping Centre, Uxbridge">
<meta name="author" content="Rayhan Chowdhury">
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/favicon.ico" />
<link type="text/css" rel="stylesheet" href="layout.css"/>
<link type="text/css" rel="stylesheet" href="nav.css"/>
<script src="contactform.js"></script>
</head>
<body>
<div id="container">
<header>
<img id="logo" alt="Shop Logo" src="images/logo.jpg"/>
<h1 id="main_title">Tru Say Phones</h1>
<p id="tel">Tel: 01895 435435</p>
</header>
<nav>
<ul>
<li><a class="main_link" title="Home page" href="index.html">Home</a></li>
<li><a class="main_link" title="Blackberry page" href="blackberry.html">Blackberry</a></li>
<li><a class="main_link" title="iPhone page" href="iphone.html">iPhone</a></li>
<li><a class="main_link" title="Samsung page" href="samsung.html">Samsung</a></li>
<li><a class="main_link" title="Accessories page" href="accessories.html">Accessories</a></li>
<li><a class="main_link" title="Offers page" href="offers.html">Offers</a></li>
<li><a class="main_link" title="Contact us page" href="contact.html">Contact Us</a></li>
</ul>
</nav>
<section>
<article id="contact_form">
<form method="post"
action="mailto:[email protected]"
onsubmit="return dataValidation()"
name="myForm">
<fieldset>
<h3>Contact Us</h3>
<label class="labelone">Full Name: </label>
<input id="name" name="name"/>
<label>Email: </label>
<input id="email" name="email"/>
<label>Message: </label>
<textarea id="message" name="message"></textarea>
</fieldset>
<fieldset>
<input class="btn" type="submit" value="Send Message"/>
<input class="btn" type="reset" value="Reset Form"/>
</fieldset>
</form>
</article>
<article id="contact_info">
<p>If you have any queries, then you can use this feedback form and we will get back to you within 48 hours.</p>
<br />
<p>Alternatively, you can call us:</p>
<p>Tel: 01895 435435</p>
<br />
<p>Address:</p>
<br />
<p>25 High Street</p>
<p>Uxbridge Shopping Centre</p>
<p>Uxbridge</p>
<p>Middlesex</p>
<p>UB8 3WE</p>
</article>
</section>
<aside>
<h3>Opening Times</h3>
<table id="opening_times">
<tr>
<td>Monday</td>
<td>9:00 - 19:00</td>
</tr>
<tr>
<td>Tuesday</td>
<td>9:00 - 19:00</td>
</tr>
<tr>
<td>Wednesday</td>
<td>9:00 - 19:00</td>
</tr>
<tr>
<td>Thursday</td>
<td>9:00 - 19:00</td>
</tr>
<tr>
<td>Friday</td>
<td>9:00 - 19:00</td>
</tr>
<tr>
<td>Saturday</td>
<td>10:00 - 17:30</td>
</tr>
<tr>
<td>Sunday</td>
<td>CLOSED</td>
</tr>
</table>
</aside>
<footer>
Copyright Rayhan Chowdhury 2013
</footer>
</div>
</body>
</html>