-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
274 lines (241 loc) · 11 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required Meta Tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- Wow JS and Animate CSS Stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="css/animate.css">
<!-- Font Awesome CDN -->
<script src="https://use.fontawesome.com/76bc20d90b.js"></script>
<!-- Swiper Slider Stylesheets -->
<link rel="stylesheet" href="css/swiper-bundle.css" />
<link rel="stylesheet" href="css/swiper-bundle.min.css" />
<title>Portfolio Page - Meipaly</title>
</head>
<body>
<!-- Header Section Start -->
<section id="header-area">
<div class="container-fluid">
<header>
<div class="logo">
<a href="index.html" class="logo-link">
<img src="images/index.png" class="logo-img" alt="logo">
</a>
</div>
<div class="links">
<ul>
<li>
<a href="index.html">home</a>
</li>
<li><a href="about.html">about</a></li>
<li><a href="service.html">service</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="blog.html">blog</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</div>
<div class="menu-icon">
<i class="fa fa-search"></i>
<i class="fa fa-bars ham"></i>
</div>
</header>
</div>
</section>
<!-- Header Section End -->
<!-- popup nav section start -->
<section id="popup-nav">
<header class="header">
<div class="container">
<nav>
<ul class="nav-lists">
<li class="nav-items">
<a href="index.html" class="nav-links">home</a>
</li>
<li class="nav-items">
<a href="about.html" class="nav-links">about</a>
</li>
<li class="nav-items">
<a href="service.html" class="nav-links">services</a>
</li>
<li class="nav-items">
<a href="portfolio.html" class="nav-links">portfolio</a>
</li>
<li class="nav-items">
<a href="blog.html" class="nav-links">blog</a>
</li>
<li class="nav-items">
<a href="contact.html" class="nav-links">contact</a>
</li>
</ul>
</nav>
</div>
</header>
</section>
<!-- popup nav section end -->
<!-- banner section start -->
<div class="banner">
<h4 class="re-subHeading"><a href="index.html" class="re-anc">HOME</a> - PORTFOLIO</h4>
<h2 class="re-heading">PORTFOLIO</h2>
</div>
<!-- banner section end -->
<!-- Portfolio Section Start -->
<section id="portfolio">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h4 class="sub-heading">OUR PORTFOLIO</h4>
<h2 class="heading wow bounceIn" data-wow-delay="800ms">WORK SHOWCASE</h2>
<p class="heading-desc">We are committed to providing our customers with exceptional service
whil
<br>
offering our employees the best training.
</p>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="single-folio">
<img src="images/portfolio1.jpg" class="" alt="portfolio1">
<div class="folio-hover">
<a href="#" class="sub-heading">ALL. GRAPHIC.</a>
<h4><a href="#">DESIGN STYLES</a></h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="single-folio">
<img src="images/portfolio2.jpg" class="" alt="portfolio1">
<div class="folio-hover">
<a href="#" class="sub-heading">ALL. GRAPHIC.</a>
<h4><a href="#">DESIGN STYLES</a></h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="single-folio">
<img src="images/portfolio3.jpg" class="" alt="portfolio1">
<div class="folio-hover">
<a href="#" class="sub-heading">ALL. GRAPHIC.</a>
<h4><a href="#">DESIGN STYLES</a></h4>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="single-folio">
<img src="images/portfolio4.jpg" class="" alt="portfolio1">
<div class="folio-hover">
<a href="#" class="sub-heading">ALL. GRAPHIC.</a>
<h4><a href="#">DESIGN STYLES</a></h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="single-folio">
<img src="images/portfolio5.jpg" class="" alt="portfolio1">
<div class="folio-hover">
<a href="#" class="sub-heading">ALL. GRAPHIC.</a>
<h4><a href="#">DESIGN STYLES</a></h4>
</div>
</div>
</div>
<div class="col-md-4">
<div class="single-folio">
<img src="images/portfolio6.jpg" class="" alt="portfolio1">
<div class="folio-hover">
<a href="#" class="sub-heading">ALL. GRAPHIC.</a>
<h4><a href="#">DESIGN STYLES</a></h4>
</div>
</div>
</div>
<div class="col-md-12">
<a href="#" class="common-button text-center">Load More</a>
</div>
</div>
</div>
</section>
<!-- Portfolio Section End -->
<!-- footer section start -->
<section id="footer">
<div class="container-fluid">
<div class="footer-wrap">
<div class="row">
<div class="col-md-5">
<div class="footer-logo">
<img src="images/index.png" alt="Meipaly logo">
<p class="heading-desc">Welcome to our web design agency. Lorem ipsum is simply free
text
dolor sit amet consectetur adipisicing elit. Tempore corrupti temporibus fuga earum
asperiores, alias excepturi sit mpedit fugit laudantium.</p>
</div>
</div>
<div class="col-md-4">
<div class="header-contact">
<h3>contact</h3>
<div class="address">
<p class="header-desc">66 Broklyn Street, New York</p>
<p class="header-desc">United States of America</p>
<p class="header-desc">P: 666 888 000</p>
<p class="header-desc">E: [email protected]</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="social">
<h3>social</h3>
<div class="social-icon">
<ul>
<li><a href="#"><i class="fa fa-twitter"></i>twitter</a></li>
<li><a href="#"><i class="fa fa-facebook-square"></i>facebook</a></li>
<li><a href="#"><i class="fa fa-youtube-play"></i>youtube</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="copyright">
<p>© COPYRIGHT 2021 BY PRANTO BAPARY</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer End -->
<!-- Scroll to Top Button Start -->
<a class="topBtn">
<i class="fa fa-angle-double-up" aria-hidden="true"></i>
</a>
<!-- Scroll to Top Button End -->
<!-- Bootstrap CDN -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous">
</script>
<!-- JQuery CounterUp Plugin -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/jquery.counterup.min.js"></script>
<!-- Swiper Slider -->
<script src="js/swiper-bundle.js"></script>
<script src="js/swiper-bundle.min.js"></script>
<!-- Wow JS -->
<script src="js/wow.min.js"></script>
<!-- JavaScript -->
<script src="js/script.js"></script>
</body>
</html>