-
Notifications
You must be signed in to change notification settings - Fork 0
/
team.html
169 lines (168 loc) · 6.83 KB
/
team.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
158
159
160
161
162
163
164
165
166
167
168
169
<!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>
<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="breadcrumb">
<span>You are here:</span>
<ul>
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about.html">about us</a>
</li>
<li>
<a href="team.html">the team</a>
</li>
</ul>
</div>
<div class="team">
<h2>the team</h2>
<div>
<a href="#" class="figure"><img src="images/chuck.jpg" alt=""></a>
<h3><a href="#">Md Asif kalim</a></h3>
<span>CEO/Owner</span>
<ul style="list-style-type:circle">
<li>Establishes current and long-range objectives, plans and policies, subject to approval by the board of directors.</li>
<li>Advises, guides, directs and authorizes major plans and dealership procedures, consistent with established policies and board approval.</li>
<li>Oversees the adequacy and soundness of the dealership's financial structure.</li>
<li>Reviews the operating results of the dealership, compares them to established objectives and takes steps to ensure that appropriate measures are taken to correct unsatisfactory results.</li>
<li>Plans and directs all investigations and negotiations pertaining to mergers, joint ventures, the acquisition of other dealerships, or the sale of major assets with the approval of the board of directors.</li>
<li>Establishes and maintains an effective system of communication throughout the dealership.</li>
<li>Represents the dealership with major customers, shareholders, the financial community, and the public.</li>
<li>Other duties as assigned.</li>
</ul>
</div>
</div>
</div>
<div class="sidebar">
<div class="navigation">
<h3>about</h3>
<ul>
<li class="selected">
<a href="about.html">the company</a>
</li>
<li>
<a href="team.html">the team</a>
</li>
</ul>
</div>
<div class="gallery">
<h3>featured from gallery</h3>
<a href="gallery.html" class="figure"><img src="images/master1.png" alt=""></a> <span><a href="gallery.html">THis is our small gallery</a></span>
<p>
screw beat photo gallery features the best cars images in India. See launch images, event and show gallery and spy pictures for upcoming cars.
</p>
</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>