-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
157 lines (157 loc) · 4.58 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Car Service Center</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<div id="header">
<div>
<a href="index.html" class="logo"><img src="images/logo.png" alt=""></a>
<form action="index.html">
<input type="text" name="search" id="search" value="">
<input type="submit" name="searchBtn" id="searchBtn" value="">
</form>
</div>
<div class="navigation">
<ul>
<li>
<a href="index.html">home</a>
</li>
<li class="selected">
<a href="about.html">about</a>
<ul>
<li>
<a href="team.html">the team</a>
</li>
</ul>
</li>
<li>
<a href="services.html">services</a>
<ul>
<li>
<a href="services.html">engine maintenance</a>
</li>
<li>
<a href="services.html">wheel allignment</a>
</li>
<li>
<a href="services.html">air condition services</a>
</li>
<li>
<a href="services.html">transmission</a>
</li>
</ul>
</li>
<li class="selected">
<a href="contact.html">contact</a>
</li>
<li class="booking">
<a href="booking.html">book an appointment</a>
</li>
</ul>
</div>
</div>
<div id="body">
<div class="content">
<div class="section">
<div class="contact">
<h2>get in touch with us!</h2>
<form action="index.html">
<label for="name"> <span>name</span>
<input type="text" name="name" id="name">
</label>
<label for="email"> <span>email</span>
<input type="text" name="email" id="email">
</label>
<label for="subject"> <span>subject</span>
<input type="text" name="subject" id="subject">
</label>
<label for="message"> <span>comment</span>
<textarea name="message" id="message"></textarea>
</label>
<input type="submit" name="send" id="send" value="">
</form>
</div>
</div>
<div class="sidebar">
<div class="contact">
<div>
<img src="images/master1.png" alt=""></a>
</div>
<h4>contact information</h4>
<ul>
<li>
<b>address:</b> <span>Jamshedpur</span>
</li>
<li>
<b>phone:</b> <span>123-456-789</span>
</li>
<li>
<b>fax:</b> <span>123-456-789</span>
</li>
<li>
<b>email:</b> <span>[email protected]</a></span>
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="footer">
<div>
<div class="contact">
<h3>contact information</h3>
<ul>
<li>
<b>address:</b> <span>Jamshepur</span>
</li>
<li>
<b>phone:</b> <span>123-456-789</span>
</li>
<li>
<b>fax:</b> <span>123-456-789</span>
</li>
<li>
<b>email:</b> <span><a href="https://mail.google.com/">[email protected]</a></span>
</li>
</ul>
</div>
<div class="connect with us ">
<h3>stay in touch</h3>
<ul>
<li id="facebook">
<a href="https://www.facebook.com/">facebook</a>
</li>
<li id="twitter">
<a href="https://twitter.com/?lang=en">twitter</a>
</li>
<li id="googleplus">
<a href="https://googleplus/">googleplus</a>
</li>
</ul>
</div>
</div>
<div class="section">
<ul>
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about.html">about</a>
</li>
<li>
<a href="services.html">services</a>
</li>-
<li>
<a href="contact.html">contact</a>
</li>
<li>
<a href="booking.html">book an appointment</a>
</li>
</ul>
</div>
</div>
</body>
</html>