-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
417 lines (411 loc) · 15.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>My Portfolio</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/mobile-style.css" />
</head>
<body>
<header>
<div class="container-fluid p-0">
<nav class="navbar navbar-expand-lg ">
<a class="navbar-brand" href="#">
<i class="fas fa-user-shield mx-3"></i>
Ian</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fas fa-align-right text-light"></i>
</button>
<div class="collapse navbar-collapse " id="navbarNav">
<div class="mr-auto"></div>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Story<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Experience</a>
</li>
<!-- <li class="nav-item dropdown">
<div class="dropdown">
<a class="nav-link" href="#">Pages</a>
<div class="dropdown-content">
<a href="#">Generic</a>
<a href="#">Element</a>
</div>
</div>
</li> -->
<!-- <li class="nav-item">
<a class="nav-link" href="#">Fact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li> -->
</ul>
</div>
</nav>
</div>
<div class="container text-center">
<div class="row">
<div class="col-md-7 col-sm-12">
<!-- <h6>Introduction</h6> -->
<h1>Hi! I'm Ian</h1>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s, when an unknown printer took a galley of
type and scrambled it to make a type specimen book.
</p>
<button class="btn btn-light px-5 py-2">
Hire me!
</button>
</div>
<div class="col-md-5 col-sm-12 h-25">
<!-- <img src="assets/header-img.png"> -->
</div>
</div>
</div>
</header>
<main>
<!-- section 1 -->
<section class="section-1">
<div class="container text-center">
<div class="row">
<div class="col-md-6">
<div class="pray">
<img src="assets/pexels-photo-1904769.jpeg" alt="Pray" />
</div>
</div>
<div class="col-md-6">
<div class="panel text-left">
<h1>
About Me!
</h1>
<p class="pt-4">
I simply want to create a better and safer world for everyone.
</p>
<p class="pt-4">
Contrary to popular belief, Lorem Ipsum is not simply random
text. It has roots in a piece of classical Latin literature
from 45 BC, making it over 2000 years old. Richard McClintock,
a Latin professor at Hampden-Sydney College in Virginia,
</p>
</div>
</div>
</div>
</div>
</section>
<!-- section 2 -->
<section class="section-2 container-fluid p-0">
<div class="cover">
<div class="content text-center">
<h1>Some features are awesome</h1>
<p>
Contrary to popular belief, Lorem Ipsum is not simply random text.
It has roots in a piec
</p>
</div>
</div>
<div class="container-fluid text-center p-0">
<div class="numbers d-flex flex-md-row flex-wrap justify-content-center">
<div class="rect">
<h1>1234</h1>
<p>yey</p>
</div>
<div class="rect">
<h1>1234</h1>
<p>yey</p>
</div>
<div class="rect">
<h1>1234</h1>
<p>yey</p>
</div>
<div class="rect">
<h1>1234</h1>
<p>yey</p>
</div>
</div>
</div>
<div class="purchase text-center">
<h1>Purchase whatever you want</h1>
<p>
Contrary to popular belief, Lorem Ipsum is not simply random text.
It has roots in a piece of classical Latin literature from 45 BC,
making it over 2000 years old. Richard McClintock, a Latin professor
at Hampden-Sydney College in Virginia,
</p>
<div class="cards">
<div class="d-flex flex-row justify-content-center flex-wrap">
<!-- first card -->
<div class="card">
<div class="card-body">
<div class="title">
<h5 class="card-title">PDF</h5>
</div>
<p class="card-text">
with supporting text below as natural lead
</p>
<div class="pricing">
<h1>$77.99</h1>
<button class="btn btn-dark px-5 py-2 mb-5">
Purchase Now!
</button>
</div>
</div>
</div>
<!-- 2nd card -->
<div class="card">
<div class="card-body">
<div class="title">
<h5 class="card-title">PDF</h5>
</div>
<p class="card-text">
with supporting text below as natural lead
</p>
<div class="pricing">
<h1>$77.99</h1>
<button class="btn btn-dark px-5 py-2 mb-5">
Purchase Now!
</button>
</div>
</div>
</div>
<!-- 3rd card -->
<div class="card">
<div class="card-body">
<div class="title">
<h5 class="card-title">PDF</h5>
</div>
<p class="card-text">
with supporting text below as natural lead
</p>
<div class="pricing">
<h1>$77.99</h1>
<button class="btn btn-dark px-5 py-2 mb-5">
Purchase Now!
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section 3 -->
<section class="section-3 container-fluid p-0 text-center">
<div class="row">
<div class="col-md-12 col-sm-12">
<h1>Download our app for all platforms</h1>
<p>
Contrary to popular belief, Lorem Ipsum is not simply random text.
It has roots in a piece of classical Latin literature from 45 BC,
making it over 2000 years old. Richard McClintock, a Latin
professor at Hampden-Sydney College in Virginia,
</p>
</div>
</div>
<div class="platform row">
<div class="col-md-6 col-sm-12 text-right">
<div class="desktop shadow-lg">
<div class="d-flex flex-row justify-content-center">
<i class="fab fa-apple fa-3x py-2 pr-3"></i>
<div class="text text-left">
<h3 class="pt-1 m-0">
iOS
</h3>
<p class="p-0 m-0">
on App Store
</p>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-sm-12 text-left">
<div class="desktop shadow-lg">
<div class="d-flex flex-row justify-content-center">
<i class="fab fa-android fa-3x py-2 pr-3"></i>
<div class="text text-left">
<h3 class="pt-1 m-0">
Android
</h3>
<p class="p-0 m-0">
on Play Store
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- section 4 -->
<section class="section-4">
<div class="container text-center">
<h1 class="text-dark">What our Readers say about Us</h1>
<p class="text-secondary">Lorem ipsum dolor sit amet</p>
</div>
<div class="team row">
<div class="col-md-4 col-12 text-center">
<!-- card 1 -->
<div class="card mr-2 d-inline-block shadow-lg">
<div class="card-img-top">
<img src="assets/UI-face-3.jpg" alt="Member" class="img-fluid border-radius p-4" />
</div>
<div class="card-body">
<h3 class="card-title">
Blalock Jolene
</h3>
<p class="card-text">
Contrary to popular belief, Lorem Ipsum is not simply random
text. It has roots in a piece of classical Latin literature
from 45 BC, making it over 2000 years old. Richard McClintock,
a Latin professor at Hampden-Sydney College in Virginia,
</p>
<a href="#" class="text-secondary text-decoration-none">Go somewhere</a>
<p class="text-black-50">CEO at Google</p>
</div>
</div>
</div>
<div class="col-md-4 col-12">
<div id="carouselExampleControls" class="carousel slide " data-ride="carousel">
<div class="carousel-inner text-center">
<div class="carousel-item active">
<div class="card mr-2 d-inline-block shadow">
<div class="card-img-top">
<img src="assets/UI-face-1.jpg" class="img-fluid rounded-circle w-50 p-4" alt="" />
</div>
<div class="card-body">
<h3 class="card-title">Allen Agnes</h3>
<p class="card-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Sint iure autem recusandae, veniam, illo dolor soluta
assumenda minima quia velit officia sit exercitationem
nam ipsa, repellendus aut facilis quasi voluptas!
</p>
<a href="#" class="text-secondary text-decoration-none">Go somewhere</a>
<p class="text-black-50">CEO at Google</p>
</div>
</div>
</div>
<div class="carousel-item">
<div class="card d-inline-block mr-2 shadow">
<div class="card-img-top">
<img src="assets/UI-face-2.jpg" class="img-fluid rounded-circle w-50 p-4" alt="" />
</div>
<div class="card-body">
<h3 class="card-title">Amiel Barbara</h3>
<p class="card-text">
Lorem ipsum dolor sit amet consectetur adipisicing elit.
Sint iure autem recusandae, veniam, illo dolor soluta
assumenda minima quia velit officia sit exercitationem
nam ipsa, repellendus aut facilis quasi voluptas!
</p>
<a href="#" class="text-secondary text-decoration-none">Go somewhere</a>
<p class="text-black-50">CEO at Google</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 col-12 text-center">
<!-- card 3 -->
<div class="card mr-2 d-inline-block shadow-lg">
<div class="card-img-top">
<img src="assets/UI-face-4.jpg" alt="Member" class="img-fluid border-radius p-4" />
</div>
<div class="card-body">
<h3 class="card-title">
Olivia Louis
</h3>
<p class="card-text">
Contrary to popular belief, Lorem Ipsum is not simply random
text. It has roots in a piece of classical Latin literature
from 45 BC, making it over 2000 years old. Richard McClintock,
a Latin professor at Hampden-Sydney College in Virginia,
</p>
<a href="#" class="text-secondary text-decoration-none">Go somewhere</a>
<p class="text-black-50">CEO at Google</p>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container-fluid p-0">
<div class="row text-left">
<div class="col-md-5 cold-md-5">
<h1 class="text-light">About US</h1>
<p class="text-muted">
Contrary to popular belief, Lorem Ipsum is not simply random text.
It has roots in a piece of classical Latin literature from 45 BC,
making it over 2000 years
</p>
<p class="pt-4 text-muted">
Copyright ©2019 All rights reserved
<span>Ian</span>
</p>
</div>
<div class="col-md-5">
<h4 class="text-light">Newsletter</h4>
<p class="text-muted">Stay updated</p>
<form action="" class="form-inline">
<div class="col pl-0">
<div class="input-group pr-">
<input type="text" class="form-control bg-dark text-white" placeholder="Email" />
<div class="input-group-prepend">
<div class="input-group-text">
<i class="fas fa-arrow-right"></i>
</div>
</div>
</div>
</div>
</form>
</div>
<div class="col-md-2 col-sm-12">
<h4 class="text-light">
Follow Us
</h4>
<p class="text-muted">
Let us be social
</p>
<div class="column">
<a href="https://www.facebook.com/Protekt-2343685919026447/" target="_blank">
<i class="fab fa-facebook"></i></a>
<i class="fab fa-instagram"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-youtube"></i>
</div>
<p class="text-light">
The image use above is from
<a href="https://www.freepik.com/free-photos-vectors/business" target="_blank">Business photo created by
senivpetro - www.freepik.com</a>
</p>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/4f767a1557.js" crossorigin="anonymous"></script>
<script src="src/main.js"></script>
</body>
</html>