forked from ilhamjulianto/my-portofolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
439 lines (391 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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
<!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="css/bootstrap.min.css">
<link rel="stylesheet" href="fontawesome/css/all.min.css">
<style>
html, body {
height: 100%;
font-family: Lato;
}
.bg-full-page {
display: table;
width: 100%;
height: 100%;
background-image: url(img/thumbs/bk.jpg);
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
overflow: hidden;
}
.bg-parallax {
background-size: cover;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-image: url(img/thumbs/parallax.jpg);
}
.overlay {
position: center;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 0;
}
.overlay-footer {
position: center;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 0;
}
.overlay-table {
display: table !important;
}
.nav-transparent {
background-color: rgba(0, 0, 0, 0.4);
z-index: 1;
}
.hr-top {
margin: auto;
width: 20%;
border: 0.1rem solid white;
border-radius: 5px;
}
.middle {
text-align: center;
display: block;
}
.v-align {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
display: block;
}
.img-shadow {
-webkit-filter: drop-shadow(5px 5px 5px #222);
filter: drop-shadow(5px 5px 5px #222);
}
.title {
font-size: 10vmin;
text-align: center;
}
.subtitle {
font-size: 5vmin;
}
.container-sm {
width: 60%;
}
.bd-title {
font-size: 4rem;
font-weight: bold;
}
.wrap {
word-wrap: break-word;
}
.h-83 {
height: 84.9%;
}
.rotate {
}
.rotate:hover {
transform: rotate(360deg);
-webkit-animation-duration: 0.5s;
-webkit-transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
.animated-rotate {
transform: rotate(360deg);
-webkit-animation-duration: 0.5s;
-webkit-transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
</style>
</head>
<body>
<div id="home" class="bg-full-page text-center">
<div class="overlay overlay-table py-5"></div>
<!-- Navbar -->
<nav class="navbar navbar-expand-sm navbar-dark nav-transparent fixed-top">
<!-- Toggler -->
<a class="navbar-brand justify-content-start" href="">
<img src="fontawesome/svgs/fire-white.svg" height="30px" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><hr></span>
</button>
<!-- Toggled -->
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav justify-content-end">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#advertising">Advertising</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#graphicexample">Graphic Examples</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#skills">Skills</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#profile">Profile</a>
</li>
</ul>
</div>
</nav>
<!-- Navbar End -->
<!-- Landing -->
<div class="container v-align p-5 text-light">
<div class="middle justify-content-center">
<h1 class="text-center p-3 display-4 wrap" style="font-family: portico;">MY PORTFOLIO</h1>
<hr class="hr-top">
<p class="p-3 display-5">
explore graphic design then become a front end, all about graphic design
</p>
<a href="#about">
<button class="btn btn-outline-light mt-5 px-4">Start</button>
</a>
</div>
</div>
<!-- Landing End -->
</div>
</div>
<!-- About -->
<main id="about" role="main">
<div class="container p-5">
<div class="row">
<div class="mx-auto col-md-6 col-sm-12 order-md-2 mt-5">
<img src="img/thumbs/graphic.jpg" alt="" class="img-fluid">
</div>
<div class="col-md-6 col-sm-12 order-md-1 text-center text-md-left pr-md-5">
<h1 class="display-4 d-block wrap my-5">GRAPHIC DESIGN</h1>
<p class="lead">
The process of visual communication and problem-solving through the use of typography, photography and illustration. The field is considered a subset of visual communication and communication design, but sometimes the term "graphic design" is used synonymously. Graphic designers create and combine symbols, images and text to form visual representations of ideas and messages. They use typography, visual arts and page layout techniques to create visual compositions. Common uses of graphic design include corporate design (logos and branding), editorial design (magazines, newspapers and books), wayfinding or environmental design, advertising, web design, communication design, product packaging and signage.
</p>
</div>
</div>
</div>
</main>
<!-- About End -->
<!-- advertising -->
<div id="advertising" class="container-fluid p-5">
<div class="container mx-auto text-center">
<p class="display-3 wrap mb-3">ADVERTISING</p>
<p class="lead">
Commercial ads often seek to generate increased consumption of their products or services through "branding", which associates a product name or image with certain qualities in the minds of consumers. On the other hand, ads that intend to elicit an immediate sale are known as direct-response advertising. Non-commercial entities that advertise more than consumer products or services include political parties, interest groups, religious organizations and governmental agencies. Non-profit organizations may use free modes of persuasion, such as a public service announcement. Advertising may also be used to reassure employees or shareholders that a company is viable or successful.
</p>
</div>
</div>
<!-- advertising End -->
<div id="graphicexample" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#graphicexample" data-slide-to="0" class="active"></li>
<li data-target="#graphicexample" data-slide-to="1"></li>
<li data-target="#graphicexample" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="img/thumbs/graphic-slide.png" alt="First slide">
<div class="carousel-caption d-none d-md-block">
<h1 class="align-text-top">GRAPHIC EXAMPLE</h1>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/thumbs/graphic-slide2.jpg" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h1 class="align-text-top">GRAPHIC EXAMPLE</h1>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100" src="img/thumbs/graphic-slide3.jpg" alt="Third slide">
<div class="carousel-caption d-none d-md-block">
<h1 class="align-text-top">GRAPHIC EXAMPLE</h1>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#graphicexample" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#graphicexample" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Graphic Examples End -->
<!-- Skills -->
<div id="skills" class="container-fluid p-5">
<div class="container text-center pb-3 my-5">
<h1 class="display-3 mt-4 wrap">SKILLS</h1>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 text-center">
<img class="mb-3 rotate" src="fontawesome/svgs/pen-nib-blue.svg" width="50px" height="50px" >
<h2>Graphic Design</h2>
<p class="mx-5 pt-4">
Having an advertising experience and having interned at an advertising company, experience Graphic Design Freelancers for 1 year. Mastering Adobe Photoshop, Adobe Illustrator, Corel Draw X7, Inkscape.
</p>
</div>
<div class="col-md-4 col-sm-12 text-center">
<img class="mb-3 rotate" src="fontawesome/svgs/code-purple.svg" width="60px" height="50px" >
<h2>Front End Web</h2>
<p class="mx-5 pt-4">
Have experience using HTML, CSS for 1 year, and is learning about Bootstrap, Javascript, etc.
</p>
</div>
<div class="col-md-4 col-sm-12 text-center">
<img class="mb-3 rotate" src="fontawesome/svgs/tape-red.svg" width="60px" height="50px" >
<h2>Video Editing</h2>
<p class="mx-5 pt-4">
Experience using Vegas Pro 13, After Effect, Adobe Premiere for 2 years. Most projects make Short Opening Videos and Effect Editing.
</p>
</div>
</div>
</div>
<!-- Skills End -->
<!-- Portfolio -->
<div class="container-fluid" id="portfolio">
<div class="container">
<div class="container text-center pt-3">
<h1 class="display-3 mt-4 wrap">PORTFOLIO</h1>
</div>
<div class="row">
<div class="col-md-3 py-5 col-sm-12">
<img class="img-fluid img-thumbnail" src="img/thumbs/portfolio.jpg"></img>
<div class="py-4">
<img class="img-fluid img-thumbnail" src="img/thumbs/portfolio3.jpg"></img>
</div>
</div>
<div class="col-md-3 py-5 col-sm-12">
<img class="img-fluid img-thumbnail" src="img/thumbs/portfolio2.jpg"></img>
<div class="py-4"><img class="img-fluid img-thumbnail" src="img/thumbs/portfolio4.jpg"></img></div>
</div>
<div class="col-md-6 py-5 col-sm-12">
<img class="img-fluid img-thumbnail h-83" src="img/thumbs/portfolio5.jpg"></img>
</div>
</div>
</div>
</div>
<!-- Portfolio End -->
<!-- Profile -->
<div id="profile" class="bg-parallax text-light">
<div class="overlay-footer py-5">
<div class="container">
<div class="container text-center pt-3">
<h1 class="display-3 mt-4 wrap">PROFILE</h1>
</div>
<div class="row">
<div class="col-md-4 col-sm-12 col-xs-12 text-center text-md-left order-md-1 order-sm-2 order-xs-2">
<h3 class="my-3">Contact</h3>
<p>
<img src="fontawesome/svgs/brands/whatsapp-white.svg" width="20px" height="20px" > +62 895 3726 2581 7 <br>
<img src="fontawesome/svgs/brands/github-white.svg" width="20px" height="20px"> ilhamjulianto <br>
<img src="fontawesome/svgs/regular/envelope-white.svg" width="20px" height="20px"> [email protected] <br>
</p>
</div>
<div class="col-md-4 col-sm-12 col-xs-12 text-center order-md-2 order-sm-1 order-xs-1">
<div class="py-3">
<img class="rounded-circle border" src="img/profile3.jpg" width="200px" height="200px" alt="Profile">
</div>
<h4 class="m-3">Muhammad Ilham Julianto</h4>
</div>
<div class="col-md-4 col-sm-12 col-xs-12 text-center text-md-right order-md-3 order-sm-3 order-xs-3">
<h3 class="my-3">About</h3>
<p>
Likes things related to graphic design, including Front End Developer.
Want to become a UI / UX master and Front End Developer.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Profile End -->
<!-- Footer -->
<figure class="text-muted">
<div class="container-fluid p-2 p-md-4">
<ul class="nav">
<li class="nav-item">
<a class="nav-link text-dark" href="#">GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="#">Twitter</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="#">Examples</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" href="#profile">About</a>
</li>
</ul>
<p class="container-fluid">Designed and built with all the love in the world by Razer. Maintained by Razer with the help of our contributors.
<br> Currently v0.0.1 Code licensed MySelf.</p>
</div>
</figure>
<!-- Footer End -->
<!-- Script -->
<script src="jquery/jquery.min.js"></script>
<script src="popper/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="portfolio-bootstrap/animate.js"></script>
<script>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
})
});
$(window).scroll(function() {
let wScroll = $(this).scrollTop();
$('.middle').css({
'transform' : 'translate(0px, '+ wScroll/6 +'%)'
});
$('.overlay').css({
'transform' : 'translate(0px, '+ wScroll/8 +'%)'
});
});
$(document).ready(function() {
$("")
});
</script>
</body>
</html>