-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
288 lines (288 loc) · 16.3 KB
/
index.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alliance</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css"/>
<link rel="stylesheet" href="./css/style.css">
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js" defer></script>
<script src="./js/app.js" defer></script>
</head>
<body>
<div class="wrapper">
<header class="header">
<div class="header__container">
<div class="header__burger">
<span></span>
</div>
<a href="#" class="header__logo">
<img src="./image/logo.svg" alt="logo">
</a>
<nav class="header__menu menu">
<ul class="menu__list">
<li><a href="#" class="menu__link">Local Movers</a></li>
<li><a href="#" class="menu__link">Long Distance</a></li>
<li><a href="#" class="menu__link">Storage</a></li>
<li><a href="#" class="menu__link">About Us</a></li>
<li><a href="#" class="menu__link">Service Area</a></li>
</ul>
<div class="menu__button">
<a href="#" class="button">Get a Quote</a>
</div>
</nav>
<div class="header__contact contact">
<a href="tel:8473784949" class="contact__phone">
<img src="./image/phone.svg" alt="phone">
<span>847-378-4949</span>
</a>
<a href="#" class="contact__button button">Get a Quote</a>
</div>
</div>
</header>
<main class="page">
<section class="company">
<div class="company__container">
<div class="company__body">
<h1 class="company__title">
Looking For A Professional Moving Company in Chicago, IL?
</h1>
<p class="company__text">
Alliance Moving & Storage is a family-operated moving company based in Rolling Meadows. Our mission is to provide professional, affordable, and reliable moving solutions for residential and commercial needs in the Chicagoland area.
</p>
</div>
</div>
</section>
<section class="services">
<div class="services__container">
<div class="services__title title-services">
<div class="title-services__title">
what we do
</div>
<h2 class="title-services__subtitle">
Professional Moving Services
</h2>
<p class="title-services__text">
From cross-country moves to anywhere in between, distance moving can be simple. We’ll help you get there
</p>
</div>
<div class="swiper services__swiper">
<div class="swiper-wrapper services__cards cards">
<div class="swiper-slide cards__card">
<div class="cards__item item-cards">
<div class="item-cards__image">
<img src="./image/cards/moving-truck-min.svg" alt="">
</div>
<h3 class="item-cards__title">Residential Moving</h3>
<p class="item-cards__text">
Managing every detail, big or small, to help you have the smoothest move possible. We’ll help you arrive home </p>
</div>
</div>
<div class="swiper-slide cards__card">
<div class="cards__item item-cards">
<div class="item-cards__image">
<img src="./image/cards/boxes-min.svg" alt="">
</div>
<h3 class="item-cards__title">Commerical Moving</h3>
<p class="item-cards__text">
Fast & efficient moving for businesses, while ensuring careful handling of equipment. We’ll support your business venture
</p>
</div>
</div>
<div class="swiper-slide cards__card">
<div class="cards__item item-cards">
<div class="item-cards__image">
<img src="./image/cards/box-min.svg" alt="">
</div>
<h3 class="item-cards__title">Packing and Unpacking services</h3>
<p class="item-cards__text">
Careful packing, crating, wrapping, and unpacking so you won’t have to worry. We’ll organize the moving parts
</p>
</div>
</div>
<div class="swiper-slide cards__card">
<div class="cards__item item-cards">
<div class="item-cards__image">
<img src="./image/cards/diven-min.svg" alt="">
</div>
<h3 class="item-cards__title">Furniture disassembly service</h3>
<p class="item-cards__text">
Servicing your appliances, electronics, over-sized furniture, and more. We’ll care for your valuables
</p>
</div>
</div>
<div class="swiper-slide cards__card">
<div class="cards__item item-cards">
<div class="item-cards__image">
<img src="./image/cards/map-min.svg" alt="">
</div>
<h3 class="item-cards__title">Long-Distance Movers</h3>
<p class="item-cards__text">
From cross-country moves to anywhere in between, distance moving can be simple. We’ll help you get there
</p>
</div>
</div>
<div class="swiper-slide cards__card">
<div class="cards__item item-cards">
<div class="item-cards__image">
<img src="./image/cards/house-min.svg" alt="">
</div>
<h3 class="item-cards__title">Storage Units</h3>
<p class="item-cards__text">
Climate controlled facilities to meet any of your storage needs. We’ll keep your items safe
</p>
</div>
</div>
</div>
<div class="swiper-pagination services__pagination"></div>
</div>
</div>
</section>
<section class="local">
<div class="local__container">
<div class="local__address">
<div class="local__title title-services title-services_left">
<div class="title-services__title">
we are local
</div>
<h2 class="title-services__subtitle">
We proudly serve the Chicagoland area
</h2>
<p class="title-services__text">
Alliance Moving & Storage is a family-operated moving company based in Rolling Meadows. Our mission is to provide professional, affordable, and reliable moving
</p>
</div>
<ul class="local__list">
<li>
<a href="#" class="local__link">
<img src="./image/location.svg" alt="location">
<span>3201 tollview drive rolling meadows, IL 60008</span>
</a>
</li>
<li>
<a href="#" class="local__link">
<img src="./image/location.svg" alt="location">
<span>4305 n. lincoln ave chicago, IL 60618</span>
</a>
</li>
<li>
<a href="tel:8473784949" class="local__link">
<img src="./image/phone-c.svg" alt="location">
<span>(847) 378-4949</span>
</a>
</li>
</ul>
</div>
<div class="local__form">
<form action="#" class="form" name="user">
<h3 class="form__title">
Get in touch
</h3>
<div class="form__body">
<div class="form__inputs">
<div class="form__input">
<label for="full-name">Full name <span>*</span></label>
<input id="full-name" type="text" name="full-name">
</div>
<div class="form__input">
<label for="tel-user">Phone<span>*</span></label>
<input id="tel-user" type="tel" name="phone" placeholder="">
</div>
</div>
<div class="form__input">
<label for="email-user">Email <span>*</span></label>
<input id="email-user" type="email" name="email-user">
</div>
<div class="form__input">
<label for="note-user">Notes</label>
<textarea name="note-user" id="note-user"></textarea>
</div>
<div class="form__button">
<button type="submit" class="button button_yellow">Submit</button>
</div>
</div>
</form>
</div>
</div>
</section>
<div class="map">
<img src="./image/map.jpg" alt="map">
</div>
<section class="blog">
<div class="blog__container">
<div class="blog__title title-services title-services_left">
<div class="title-services__body">
<div class="title-services__title">
BLOG
</div>
<h2 class="title-services__subtitle">
Our latest moving tips
</h2>
</div>
<div class="title-services__button">
<a href="#" class="button button_border">View All</a>
</div>
</div>
<div class="swiper blog__swiper">
<div class="swiper-wrapper blog__tips tips-blog">
<div class="swiper-slide tips-blog__tip">
<div class="tips-blog__item tip-blog">
<div class="tip-blog__image">
<img src="./image/rams.png" alt="rums">
</div>
<div class="tip-blog__body">
<div class="tip-blog__date">December 16, 21</div>
<h3 class="tip-blog__title">How to move during COVID</h3>
<p class="tip-blog__text">
It depends on the size of your room It depends on the size of your room It depends on the size of your room
</p>
</div>
</div>
</div>
<div class="swiper-slide tips-blog__tip">
<div class="tips-blog__item tip-blog">
<div class="tip-blog__image">
<img src="./image/rams.png" alt="rums">
</div>
<div class="tip-blog__body">
<div class="tip-blog__date">December 16, 21</div>
<h3 class="tip-blog__title">How to move during COVID</h3>
<p class="tip-blog__text">
It depends on the size of your room It depends on the size of your room It depends on the size of your room
</p>
</div>
</div>
</div>
<div class="swiper-slide tips-blog__tip">
<div class="tips-blog__item tip-blog">
<div class="tip-blog__image">
<img src="./image/rams.png" alt="rums">
</div>
<div class="tip-blog__body">
<div class="tip-blog__date">December 16, 21</div>
<h3 class="tip-blog__title">How to move during COVID</h3>
<p class="tip-blog__text">
It depends on the size of your room It depends on the size of your room It depends on the size of your room
</p>
</div>
</div>
</div>
</div>
<div class="swiper-pagination blog__pagination"></div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__container">
<div class="footer__text footer__text_upper">© alliance moving and storage. all rights reserved</div>
<div class="footer__text-block">
<div class="footer__text footer__text_upper">privacy policy | consumer information</div>
<div class="footer__text">ITLL MC: 214854 - USDOT: 2882675</div>
</div>
<div class="footer__text">Made by Comrade</div>
</div>
</footer>
</div>
</body>
</html>