-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
65 lines (57 loc) · 2.96 KB
/
portfolio.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
<!-- ====================== PORTFOLIO =================== -->
<section class="portfolio section" id="portfolio">
<h2 class="section__title">Portfolio</h2>
<span class="section__subtitle">Most Recent Work</span>
<div class="portfolio__container container swiper mySwiper">
<div class="swiper-wrapper">
<!-- ====================== PORTFOLIO 1 =================== -->
<div class="portfolio__content grid swiper-slide">
<img src="img/image3.jpg" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Modern Website</h3>
<p class="portfolio__description">Website adaptable to all devices, with Ui component and
animated interactions.</p>
<a href="#" class="button button--flex button--small portfolio__button">
Demo
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
<!-- ====================== PORTFOLIO 2 =================== -->
<div class="portfolio__content grid swiper-slide">
<img src="img/image4.jpg" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Brand Design</h3>
<p class="portfolio__description">Website adaptable to all devices, with Ui component and
animated interactions.</p>
<a href="#" class="button button--flex button--small portfolio__button">
Demo
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
<!-- ====================== PORTFOLIO 3 =================== -->
<div class="portfolio__content grid swiper-slide">
<img src="img/image2.jpg" alt="" class="portfolio__img">
<div class="portfolio__data">
<h3 class="portfolio__title">Online Store</h3>
<p class="portfolio__description">Website adaptable to all devices, with Ui component and
animated interactions.</p>
<a href="#" class="button button--flex button--small portfolio__button">
Demo
<i class="uil uil-arrow-right button__icon"></i>
</a>
</div>
</div>
</div>
<!-- ----------- Add Arrows------------- -->
<div class="swiper-button-next">
<i class="uil uil-angle-right-b swiper-portfolio-icon"></i>
</div>
<div class="swiper-button-prev">
<i class="uil uil-angle-left-b swiper-portfolio-icon"></i>
</div>
<!-- ----------------- Add Pagination-------------- -->
<div class="swiper-pagination"></div>
</div>
</section>