-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
312 lines (290 loc) · 13.8 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
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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Business Portfolio Website- Portfolio</title>
<!--Link Fontawesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--Link Bootstrap css-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
#topHeader {
background-color: #bdc3c7;
border-bottom: 1px solid silver;
}
#topHeader a {
color: #34495e;
font-weight: 600;
font-size: 0.89rem;
}
.container-fluid {
padding-left: 0;
padding-right: 0;
}
nav ul li a {
font-size: 1.1rem;
font-weight: 600;
}
/*START : Footer*/
.full-footer {
background-color: #6c5ce7;
}
.top-footer p {
color: white;
}
.top-footer a {
color: white;
font-weight: 600;
}
.top-footer h3 {
color: white;
}
.bottom-footer {
background-color: #a29bfe;
}
.bottom-footer p {
color: white;
}
/*End : Footer*/
/*Start: breadcrumbs section*/
.breadcrumbs-section {
background-color: #e9ecef;
}
/*End: breadcrumbs section*/
.requirements-section {
background-color: #004d80;
color: white;
}
</style>
</head>
<!--
xs<576 | 576<sm<768 | 768<md<992 | 992<lg<1200 | 1200<xl
-->
<body>
<!--Header-->
<header>
<div class="p-1" id="topHeader">
<div class="container">
<div class="row">
<div class="col-12 text-right">
<a class="p-1" href="tel:+940771775867"><i class="fa-solid fa-phone"></i>077 1775867</a>
<a class="p-1" href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i>[email protected]</a>
</div>
</div>
</div>
</div>
<div id="bottomHeader">
<div class="container-fluid">
<nav class="navbar navbar-dark navbar-expand-md" style="background-color:#8e44ad;">
<a class="navbar-brand" href="">
<img src="imgs/bpw.png" width="250px" alt="" />
</a>
<button data-toggle="collapse" data-target="#navbarToggler" type="button" class="navbar-toggler">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggler">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="businessportfoliowebsite.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" href="#">Services</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="webdesigning.html">Web Designing</a>
<a class="dropdown-item" href="webdevelopment.html">Web Development</a>
<a class="dropdown-item" href="seoservice.html">SEO Services</a>
<a class="dropdown-item" href="softwaredevelopment.html">Software Development</a>
<a class="dropdown-item" href="mobileappdevelopment.html">Mobile App Development</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="graphicdesigning.html">Graphic Designing</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutus.html">AboutUs</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">ContactUs</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<!--breadcrumbs-section-->
<section class="breadcrumbs-section">
<div class="container pl-3 p-1 p-sm-3">
<div class="row">
<div class="col-12">
<h2>Portfolio</h2>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="businessportfoliowebsite.html">Home</a></li>
<li class="breadcrumb-item active">Portfolio</li>
</ol>
</div>
</div>
</div>
</section>
<!--portfolio-section parag-->
<section class="portfolio-section">
<div class="container">
<div class="row">
<div class="col-12">
<p>Starlink is a satellite internet constellation developed by SpaceX, aimed at providing high-speed internet access to areas with limited or no connectivity using a network of low Earth orbit satellites</p>
<hr />
</div>
</div>
</div>
</section>
<!--portfolio-section-->
<section class="portfolio-section">
<div class="container">
<div class="row">
<div class="col-12 text-center">
<h3>
Some Of Our Work
</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center">
<img class="img-fluid p-2 p-sm-3" src="imgs/web1.png" alt="" />
<h5>XYZ company</h5>
<p><i>- Static website</i></p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid p-2 p-sm-3" src="imgs/web2.png" alt="" />
<h5>XCV company</h5>
<p><i>- Dynamic website</i></p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid p-2 p-sm-3" src="imgs/web3.png" alt="" />
<h5>QWW company</h5>
<p><i>- Static website</i></p>
</div>
</div>
<div class="row">
<div class="col-md-4 text-center">
<img class="img-fluid p-2 p-sm-3" src="imgs/web4.png" alt="" />
<h5>XYZ company</h5>
<p><i>- Static website</i></p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid p-2 p-sm-3" src="imgs/web5.png" alt="" />
<h5>WP company</h5>
<p><i>- Dynamic website</i></p>
</div>
<div class="col-md-4 text-center">
<img class="img-fluid p-2 p-sm-3" src="imgs/web6.png" alt="" />
<h5>QWW company</h5>
<p><i>- Static website</i></p>
</div>
</div>
</div>
</section>
<!--Requirement section-->
<section class="requirements-section pt-1 pb-1 pt-md-3 pb-md-3">
<div class="container">
<div class="row align-items-center">
<div class="text-center col-md-9">
<h3>Do you have any requirements? we can do it for you!</h3>
</div>
<div class="text-center col-md-3">
<button class="btn btn-lg btn-primary">Get Started</button>
</div>
</div>
</div>
</section>
<!--client section-->
<section class="pt-3 pb-4 clients-section">
<div class="container">
<div class="row mt-4">
<div class="col text-center">
<h3>
Some of our trusted clients.
</h3>
</div>
</div>
<hr />
</div>
<div class="row">
<div class="col-md-2 col-6">
<img class="img-fluid qualities-img p-5" src="imgs/apple.png" alt="" />
</div>
<div class="col-md-2 col-6">
<img class="img-fluid qualities-img p-5" src="imgs/google.png" alt="" />
</div>
<div class="col-md-2 col-6">
<img class="img-fluid qualities-img p-5" src="imgs/netflix.png" alt="" />
</div>
<div class="col-md-2 col-6">
<img class="img-fluid qualities-img p-5" src="imgs/yahoo.png" alt="" />
</div>
<div class="col-md-2 col-6">
<img class="img-fluid qualities-img p-5" src="imgs/google.png" alt="" />
</div>
<div class="col-md-2 col-6">
<img class="img-fluid qualities-img p-5" src="imgs/netflix.png" alt="" />
</div>
</div>
</section>
<!--Footer-->
<footer class="full-footer">
<div class="container top-footer p-md-3 p-1 pt-2">
<div class="row">
<div class="col-md-3 pl-4 pr-4">
<img class="img-fluid" src="imgs/bpw.png" />
<p>
Starlink is a satellite internet constellation developed by SpaceX,
aimed at providing high-speed internet access to areas with limited or no connectivity using a
network of low Earth orbit satellites...<a href="#">Read more...</a>
</p>
<a style="color:silver;" class="p-2" href="#"><i class="fa-brands fa-2x fa-square-facebook"></i></a>
<a style="color:silver;" class="p-2" href="https://twitter.com/?lang=en"><i class="fa-brands fa-2x fa-twitter"></i></a>
<a style="color:silver;" class="p-2" href="#"><i class="fa-brands fa-2x fa-youtube"></i></a>
<a style="color:silver;" class="p-2" href="#"><i class="fa-brands fa-2x fa-instagram"></i></a>
</div>
<div class="col-md-3 pl-4 pr-4">
<h3>Important Links</h3>
<a href="#">Privacy policy</a><br />
<a href="#">Blog Articles</a><br />
<a href="#">Vlogs</a><br />
<a href="#">Social Media</a>
</div>
<div class="col-md-3 pl-4 pr-4">
<h3>Our Services</h3>
<a href="webdesigning.html">Web Designing</a><br />
<a href="webdevelopment.html">Web Development</a><br />
<a href="seoservice.html">SEO Services</a><br />
<a href="softwaredevelopment.html">Software Development</a><br />
<a href="mobileappdevelopment.html">Mobile App Development</a><br />
<a href="graphicdesigning.html">Graphic Designing</a>
</div>
<div class="col-md-3 pl-4 pr-4">
<h3>Contact Us</h3>
<a class="p-1" href="tel:+940771775867"><i class="fa-solid fa-phone"></i>077 1775867</a><br />
<a class="p-1" href="mailto:[email protected]"><i class="fa-solid fa-envelope"></i>[email protected]</a>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d31651.793942098913!2d81.803988134534!3d7.41264751317795!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3ae53efb548597d5%3A0x6be184346c6743fe!2sKalmunai!5e0!3m2!1sen!2slk!4v1678819639256!5m2!1sen!2slk" frameborder="0"></iframe>
</div>
</div>
</div>
</div>
<div class="container-fluid bottom-footer">
<div class="row">
<div class="col-12 text-center pt-2">
<p>Copyrights @ 2023 - All rights reserved</p>
</div>
</div>
</div>
</footer>
<!--Link Bootstrap css, Js-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>