-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
511 lines (500 loc) · 39.6 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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>BootStrap 4 Project</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="asset/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="asset/css/animate.css">
<link rel="stylesheet" type="text/css" href="asset/css/default.css">
<link rel="stylesheet" type="text/css" href="asset/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="asset/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,500i,600" rel="stylesheet"> </head>
<body>
<!-- top navbar-->
<header>
<div class="navigationa-bar">
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top">
<div class="container">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active"> <a class="nav-link" href="index.html">home <span class="sr-only">(current)</span></a> </li>
<li class="nav-item"> <a class="nav-link" href="fashion.html">fashion</a> </li>
<li class="nav-item"> <a class="nav-link" href="photoshotting.html">photoshooting</a> </li>
<li class="nav-item"> <a class="nav-link" href="photography.html">photography</a> </li>
<li class="nav-item"> <a class="nav-link" href="editor-choice.html">editors choice</a> </li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">page</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown"> <a class="dropdown-item" href="index.html">Sample page</a> <a class="dropdown-item" href="contact.html">contact</a> <a class="dropdown-item" href="contact.html">about us</a> </div>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item"> <a class="nav-link" href="#"><i class="fa fa-facebook" aria-hidden="true"></i></a> </li>
<li class="nav-item"> <a class="nav-link" href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a> </li>
<li class="nav-item"> <a class="nav-link" href="#"><i class="fa fa-pinterest" aria-hidden="true"></i></a> </li>
<li class="nav-item"> <a class="nav-link" href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a> </li>
<li class="nav-item"> <a class="nav-link" href="#"><i class="fa fa-dribbble" aria-hidden="true"></i></a> </li>
</ul>
</div>
</div>
</nav>
</div>
<!-- logo-->
<div class="logo pb-50">
<div class="container">
<div class="logo-inner">
<a href="index.html"><img class="img-responsive" src="asset/image/logo/logo.png" alt="" data-toggle="tooltip" data-placement="top" title="BRIXTON"></a>
</div>
</div>
</div>
</header>
<!-- block wrapper-->
<section class="block-wrapper">
<div class="text-block">
<div class="row col-no-margin">
<div class="col-xl-4 pl-0 pr-0">
<a href="#">
<div class="block-all-text" style="background: #F15B26;">
<div class="text-inner-block">
<h5>NEW BREAKFAST CAFE OPENS TODAY</h5> </div>
<div class="block-lower-text">
<p>WE HAVE REVIEWED IT FOR YOU</p>
</div>
</div>
<!-- img block-->
<div class="block-arapper-img"> <img src="asset/image/featured-image/featured-image-1.jpg" alt=""> </div>
</a>
</div>
<div class="col-xl-4 pl-0 pr-0">
<a href="#">
<div class="block-all-text" style="background: #FCB03B;">
<div class="text-inner-block">
<h5>NEW BREAKFAST CAFE OPENS TODAY</h5> </div>
<div class="block-lower-text">
<p>WE HAVE REVIEWED IT FOR YOU</p>
</div>
</div>
<!-- img block-->
<div class="block-arapper-img"> <img src="asset/image/featured-image/featured-image-2.jpg" alt=""> </div>
</a>
</div>
<div class="col-xl-4 pl-0 pr-0">
<a href="#">
<div class="block-all-text" style="background: #3CB878;">
<div class="text-inner-block">
<h5>NEW BREAKFAST CAFE OPENS TODAY</h5> </div>
<div class="block-lower-text">
<p>WE HAVE REVIEWED IT FOR YOU</p>
</div>
</div>
<!-- img block-->
<div class="block-arapper-img"> <img src="asset/image/featured-image/featured-image-3.jpg" alt=""> </div>
</a>
</div>
</div>
</div>
</section>
<section class="blog-body-wrapper pt-100 pb-50">
<div class="container">
<div class="row">
<div class="col-xl-8">
<!-- =========blog content===========-->
<div class="blog-content">
<div class="blog-haeder text-center">
<div class="blog-category">
<a href="#"><img src="asset/image/border/border-left.png" alt=""> FASHION</a>, <a href="#">PHOTOSHOOTINGS <img src="asset/image/border/brixton-border-right.png" alt=""></a> </div>
<div class="block-haeding pt-20"> <a href="post-details.html"><h3>BRAND NEW SELECTION OF FASHION</h3></a> </div>
</div>
<div class="blog-content-img pt-20">
<a href="#"><img src="asset/image/blog-img/blog-post.jpg" class="img-responsive" alt=""></a>
</div>
<div class="content-details">
<p><span class="big-letter text-sudo" style="font-size: 5em;">F</span>ashion is a popular style or practice, especially in clothing, footwear, access, makeup, body piercing, or furniture. Fashion is a distinctive and often habitual trend in the style in which a person dresses. It is the prevailing styles in behaviour and the newest creations of textile designers. Because the more technical term costume is regularly linked to the term “fashion”, the use of the former has been relegated to special senses like fancy dress or masquerade wear, while “fashion” generally means clothing, including the study of it. Although aspects of fashion can be feminine or masculine, some trends are androgynous. Although tailors and dressmakers were no doubt responsible for many innovations, and the textile industry certainly led many trends, the history of fashion design is normally understood to date from 1858 when the English-born Charles Frederick Worth opened the first true haute couture house in Paris. - John Doe The Haute house was the name established by government for the fashion houses that met the standards of industry. These fashion houses have to adhere to standards such as keeping at least twenty employees engaged in making the clothes, showing two collections per year at fashion shows, and presenting a certain number of patterns to costumers. Since then, the idea of the fashion designer as a celebrity in his or her own right has become increasingly dominant.</p>
<p><span><img src="asset/image/blog-img/blog-mini.jpg" alt="imgage" class="img-responsive img-desc">The idea of unisex dressing originated in the 1960s when designers such as Pierre Cardin and Rudi Gernreich created garments, such as stretch jersey tunics or leggings, meant to be worn by both males and females. The impact of unisex expands more broadly to encompass various themes in fashion including androgyny, mass-market retail, and conceptual clothing. The fashion trends of the 1970s, such as sheepskin jackets, flight jackets, duffel coats, and unstructured clothing influenced men to attend social gatherings</span></p> <a href="#" class="read-button text-center">Read More»</a> </div>
<div class="blog-content-footer">
<div class="row">
<div class="col-xl-6"> <a href="#" class="post-meta">JANUARY 23, 2015 BY Comilla</a> </div>
<div class="col-xl-6">
<ul>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="instagram"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="linkedin"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="google-plus"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- =========End blog content===========-->
<!--============quotes category==============-->
<div class="quotes-category">
<div class="block-quotes-inner">
<p>A really great man is known by three signs: generosity in the design, humanity in the execution, moderation in the success.</p>
<hr>
<h4>Otto von Bismarck</h4> </div>
</div>
<!--============quotes category End==============-->
<!-- ==============EDitor choice============-->
<div class="blog-content">
<div class="blog-haeder text-center">
<div class="blog-category">
<a href="#"><img src="asset/image/border/border-left.png" alt=""> FASHION</a>, <a href="#">PHOTOSHOOTINGS <img src="asset/image/border/brixton-border-right.png" alt=""></a> </div>
<div class="block-haeding pt-20"> <a href="post-details.html"><h3>BRAND NEW SELECTION OF FASHION</h3></a> </div>
</div>
<div class="blog-content-img pt-20">
<a href="#"><img src="asset/image/blog-img/blog-post-brixtons-8-740x410%20(1).jpg" class="img-responsive" alt=""></a>
<div class="content-overlay-inner">
<h3><a href="#">http://www.envato.com/</a></h3>
</div>
</div>
<div class="content-details">
<p>This is a <strong><a href="#">link post</a></strong>.Fashion is a popular style or practice, especially in clothing, footwear, access, makeup, body piercing, or furniture. Fashion is a distinctive and often habitual trend in the style in which a person dresses. It is the prevailing styles in behaviour and the newest creations of textile designers.</div>
</div>
<!--==============EDitor choice End============-->
<!--=========blog content===========-->
<div class="blog-content">
<div class="blog-haeder text-center">
<div class="blog-category">
<a href="#"><img src="asset/image/border/border-left.png" alt=""> BLOGROLL,</a>, <a href="#">FASHION <img src="asset/image/border/brixton-border-right.png" alt=""></a> </div>
<div class="block-haeding pt-20"> <a href="#"><h3>FASHIONABLE SWEATERS FOR EVERYONE</h3></a> </div>
</div>
<div class="blog-content-img pt-20">
<a href="#"><img src="asset/image/blog-img/blog-post-brixtons-5-740x410.jpg" class="img-responsive" alt=""></a>
</div>
<div class="content-details">
<p><span class="big-letter text-sudo" style="font-size: 5em;">F</span>ashion is a popular style or practice, especially in clothing, footwear, access, makeup, body piercing, or furniture. Fashion is a distinctive and often habitual trend in the style in which a person dresses. It is the prevailing styles in behaviour and the newest creations of textile designers. Because the more technical term costume is regularly linked to the term “fashion”, the use of the former has been relegated to special senses like fancy dress or masquerade wear, while “fashion” generally means clothing, including the study of it. Although aspects of fashion can be feminine or masculine, some trends are androgynous. Although tailors and dressmakers were no doubt responsible for many innovations, and the textile industry certainly led many trends, the history of fashion design is normally understood to date from 1858 when the English-born Charles Frederick Worth opened the first true haute couture house in Paris. - John Doe The Haute house was the name established by government for the fashion houses that met the standards of industry. These fashion houses have to adhere to standards such as keeping at least twenty employees engaged in making the clothes, showing two collections per year at fashion shows, and presenting a certain number of patterns to costumers. Since then, the idea of the fashion designer as a celebrity in his or her own right has become increasingly dominant.</p>
<p><span><img src="asset/image/blog-img/blog-mini.jpg" alt="imgage" class="img-responsive img-desc">The idea of unisex dressing originated in the 1960s when designers such as Pierre Cardin and Rudi Gernreich created garments, such as stretch jersey tunics or leggings, meant to be worn by both males and females. The impact of unisex expands more broadly to encompass various themes in fashion including androgyny, mass-market retail, and conceptual clothing. The fashion trends of the 1970s, such as sheepskin jackets, flight jackets, duffel coats, and unstructured clothing influenced men to attend social gatherings</span></p> <a href="#" class="read-button text-center">Read More»</a> </div>
<div class="blog-content-footer">
<div class="row">
<div class="col-xl-6"> <a href="#" class="post-meta">JANUARY 23, 2015 BY Comilla</a> </div>
<div class="col-xl-6">
<ul>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!--=========blog content===========-->
<div class="blog-content">
<div class="blog-haeder text-center">
<div class="blog-category">
<a href="#"><img src="asset/image/border/border-left.png" alt=""> FASHION</a>, <a href="#">PHOTOSHOOTINGS<img src="asset/image/border/brixton-border-right.png" alt=""></a> </div>
<div class="block-haeding pt-20"> <a href="#"><h3>THIS IS A GALLERY POST</h3></a> </div>
</div>
<div class="blog-content-img pt-20">
<a href="#"><img src="asset/image/blog-img/blog-post-brixtons-3.jpg" class="img-responsive" alt=""></a>
</div>
<div class="content-details">
<p><span class="big-letter text-sudo" style="font-size: 5em;">F</span>ashion is a popular style or practice, especially in clothing, footwear, access, makeup, body piercing, or furniture. Fashion is a distinctive and often habitual trend in the style in which a person dresses. It is the prevailing styles in behaviour and the newest creations of textile designers. Because the more technical term costume is regularly linked to the term “fashion”, the use of the former has been relegated to special senses like fancy dress or masquerade wear, while “fashion” generally means clothing, including the study of it. Although aspects of fashion can be feminine or masculine, some trends are androgynous. Although tailors and dressmakers were no doubt responsible for many innovations, and the textile industry certainly led many trends, the history of fashion design is normally understood to date from 1858 when the English-born Charles Frederick Worth opened the first true haute couture house in Paris. - John Doe The Haute house was the name established by government for the fashion houses that met the standards of industry. These fashion houses have to adhere to standards such as keeping at least twenty employees engaged in making the clothes, showing two collections per year at fashion shows, and presenting a certain number of patterns to costumers. Since then, the idea of the fashion designer as a celebrity in his or her own right has become increasingly dominant.</p>
<p><span><img src="asset/image/blog-img/blog-mini.jpg" alt="imgage" class="img-responsive img-desc">The idea of unisex dressing originated in the 1960s when designers such as Pierre Cardin and Rudi Gernreich created garments, such as stretch jersey tunics or leggings, meant to be worn by both males and females. The impact of unisex expands more broadly to encompass various themes in fashion including androgyny, mass-market retail, and conceptual clothing. The fashion trends of the 1970s, such as sheepskin jackets, flight jackets, duffel coats, and unstructured clothing influenced men to attend social gatherings</span></p> <a href="#" class="read-button text-center">Read More»</a> </div>
<div class="blog-content-footer">
<div class="row">
<div class="col-xl-6"> <a href="#" class="post-meta">JANUARY 23, 2015 BY Comilla</a> </div>
<div class="col-xl-6">
<ul>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<!--=========blog content End===========-->
</div>
<div class="col-xl-4">
<div class="side-bar">
<div class="widget-wrapper">
<div class="widget-header">
<h4>ABOUT ME</h4> </div>
<div class="widget-space"></div>
<div class="widget-text"> <img src="asset/image/blog-img/brixton-avatar.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<p>Hello, my name is <strong>Brixton</strong>. I am a blogger living in New York. This is my blog, where I post my photos, fashion trends and tips about the fashion world. Never miss out on new stuff.</p>
</div>
</div>
<!-- Social widget-->
<div class="widget-wrapper">
<div class="widget-social">
<ul>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="#" data-toggle="tooltip" data-placement="top" title="Tooltip on top"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
<!-- popular post-->
<div class="widget-wrapper">
<div class="widget-header">
<h4>POPULAR POSTS</h4> </div>
<div class="widget-space"></div>
<div class="widget-category"> <img src="asset/image/blog-img/blog-post-brixtons-10-285x155.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<div class="widget-title"> <a href="#">» BRAND NEW SELECTION OF FASHION</a> </div>
</div>
<hr>
<div class="widget-category"> <img src="asset/image/blog-img/blog-post-brixtons-13-285x155.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<div class="widget-title"> <a href="#">» BRAND NEW BARBER SHOP JUST OPENED</a> </div>
</div>
<hr>
<div class="widget-category"> <img src="asset/image/blog-img/blog-post-brixtons-2-285x155.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<div class="widget-title"> <a href="#">» IN LOVE WITH THIS BOOK</a> </div>
</div>
</div>
<!-- category-->
<div class="widget-wrapper">
<div class="widget-header">
<h4>CATEGORIES</h4> </div>
<div class="widget-space"></div>
<div class="widget-category-item">
<ul>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Blogroll</a></li>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Editor's choice</a></li>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Fashion</a></li>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Featured</a></li>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Photography</a></li>
<li><a href="#"><i class="fa fa-pencil-square-o" aria-hidden="true"></i>Photoshootings</a></li>
</ul>
</div>
</div>
<!-- instragran feed -->
<div class="widget-wrapper">
<div class="widget-header">
<h4>OUR INSTAGRAM FEED</h4> </div>
<div class="widget-space"></div>
<div class="widget-image-feed">
<div class="row">
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/instragram_feed/1.jpg" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/instragram_feed/2.jpg" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/instragram_feed/3.jpg" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/instragram_feed/4.jpg" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/instragram_feed/5.jpg" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/instragram_feed/6.jpg" alt="image" class="img-responsive"></a>
</div>
</div>
</div>
</div>
</div>
<!-- search box-->
<div class="widget-wrapper">
<form action="" role="form">
<input type="text" class="form-control widget-search" placeholder="Search"> </form>
</div>
<!-- Avertising -->
<div class="widget-wrapper">
<div class="widget-header">
<h4>ADVERTISING SECTION</h4> </div>
<div class="widget-space"></div> <img src="asset/image/banner/zara-banner-ad.jpg" alt="image" class="img-responsive"> </div>
<!-- tags-->
<div class="widget-wrapper">
<div class="widget-header">
<h4>ADVERTISING SECTION</h4> </div>
<div class="widget-space"></div>
<div class="widget-tag">
<ul>
<li><a href="#">BARBER</a></li>
<li><a href="#">BEARD</a></li>
<li><a href="#">BIKE</a></li>
<li><a href="#">BOOK</a></li>
<li><a href="#">BROWN</a></li>
<li><a href="#">COFEE</a></li>
<li><a href="#">DESIGN</a></li>
<li><a href="#">FASHION</a></li>
<li><a href="#">FOOD</a></li>
<li><a href="#">MAN</a></li>
<li><a href="#">PHOTOGRAPH</a></li>
<li><a href="#">SHIRT</a></li>
</ul>
</div>
</div>
<!-- recent post-->
<div class="widget-wrapper">
<div class="widget-header">
<h4>RECENT POSTS</h4> </div>
<div class="widget-space"></div>
<div class="widget-category recent-category"> <img src="asset/image/blog-img/blog-post-brixtons-10-285x155.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<div class="widget-title"> <a href="#">» BRAND NEW SELECTION OF FASHION</a> </div>
</div>
<hr>
<div class="widget-category recent-category"> <img src="asset/image/featured-image/blog-post-brixtons-3-285x155.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<div class="widget-title"> <a href="#">» NEW BREAKFAST CAFE OPENS TODAY</a> </div>
</div>
<hr>
<div class="widget-category recent-category"> <img src="asset/image/blog-img/blog-post-brixtons-2-285x155.jpg" alt="immge" class="img-responsive">
<div class="widget-space"></div>
<div class="widget-title"> <a href="#">» IN LOVE WITH THIS BOOK</a> </div>
</div>
</div>
<!-- Avertising -->
<div class="widget-wrapper">
<div class="widget-header">
<h4>ADVERTISING SECTION</h4> </div>
<div class="widget-space"></div> <img src="asset/image/banner/zara-banner-ad.jpg" alt="image" class="img-responsive"> </div>
<!-- twitter post-->
<div class="widget-wrapper">
<div class="widget-header">
<h4>LATEST TWEETS</h4> </div>
<div class="widget-space"></div>
<div class="widget-twitter"> <span class="logo-widget"><i class="fa fa-twitter" aria-hidden="true"></i></span>
<h5>Everything You Need To Know About #AMP <a href="#">Websitehttps://t.co/GZUQFbdMdJ</a>
<a href="#">https://t.co/Py36lUbdFT</a></h5>
<p>6 days ago</p>
</div>
<div class="widget-twitter"> <span class="logo-widget"><i class="fa fa-twitter" aria-hidden="true"></i></span>
<h5>5 Ways To Remove A Page From #Google <a href="#">Searchhttps://t.co/q9VlpAmYZ6</a>
<a href="#">https://t.co/HymLB8Y4Cy</a></h5>
<p>10 days ago</p>
</div>
<div class="widget-twitter"> <span class="logo-widget"><i class="fa fa-twitter" aria-hidden="true"></i></span>
<h5>5 Ways To Remove A Page From #Google <a href="#">Searchhttps://t.co/q9VlpAmYZ6</a>
<a href="#">https://t.co/HymLB8Y4Cy</a></h5>
<p>13 days ago</p>
</div>
</div>
<!-- mini ads banner-->
<!-- instragran feed -->
<div class="widget-wrapper">
<div class="widget-header">
<h4>ADVERTISING 100×130</h4> </div>
<div class="widget-space"></div>
<div class="widget-image-feed mini-ads">
<div class="row">
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/banner/brixton-banner-ad-125%20(1).png" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/banner/brixton-banner-ad-125%20(2).png" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/banner/brixton-banner-ad-125%20(3).png" alt="image" class="img-responsive"></a>
</div>
</div>
<div class="col-xl-6">
<div class="image-item">
<a href="#"><img src="asset/image/banner/brixton-banner-ad-125%20(1).png" alt="image" class="img-responsive"></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- pagination-->
<section class="pagination-section">
<div class="container">
<nav aria-label="Page navigation example">
<ul class="pagination">
<li class="page-item"><a class="page-link" href="#">Previous</a></li>
<li class="page-item"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item"><a class="page-link" href="#">Next</a></li>
</ul>
</nav>
</div>
</section>
<section class="footer mt-50">
<div class="footer-warpper pt-50 pb-50">
<div class="block1 text-center">
<h3>FOLLOW ME ON INSTAGRAM</h3>
</div>
<div class="block2">
<div class="row col-no-margin">
<div class="col-xl-2 pl-0 pr-0">
<div class="footer-item">
<img src="asset/image/instragram_feed/i1.jpg" alt="image">
</div>
</div>
<div class="col-xl-2 pl-0 pr-0">
<div class="footer-item">
<img src="asset/image/instragram_feed/i1.jpg" alt="image">
</div>
</div>
<div class="col-xl-2 pl-0 pr-0">
<div class="footer-item">
<img src="asset/image/instragram_feed/i1.jpg" alt="image">
</div>
</div>
<div class="col-xl-2 pl-0 pr-0">
<div class="footer-item">
<img src="asset/image/instragram_feed/i1.jpg" alt="image">
</div>
</div>
<div class="col-xl-2 pl-0 pr-0">
<div class="footer-item">
<img src="asset/image/instragram_feed/i1.jpg" alt="image">
</div>
</div>
<div class="col-xl-2 pl-0 pr-0">
<div class="footer-item">
<img src="asset/image/instragram_feed/i1.jpg" alt="image">
</div>
</div>
</div>
</div>
<div class="block3 text-center">
<h3>“I started with Brixton to provide you with daily fresh new ideas about trends. It is a very clean and elegant HTML5 Theme suitable for every blogger. Perfect for sharing your lifestyle.”</h3>
<div class="foote-logo">
<img src="asset/image/logo/brixton-footer-logo.png" alt="img" class="img-responsive">
</div>
</div>
</div>
</section>
<div class="footer-wrap text-center">
<div class="container">
© 2018 copyright Radwan // All rights reserved // Privacy Policy
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="asset/js/jquery-3.1.1.min.js"></script>
<script src="asset/js/modernizr-3.5.0.min.js"></script>
<script src="asset/js/bootstrap.min.js"></script>
<script src="asset/js/script.js"></script>
</body>
</html>