-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
343 lines (326 loc) · 14.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<!-- Bootstrap Icon -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
<!-- My Css -->
<link rel="stylesheet" href="style.css" />
<!---AOS-->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>Latihan</title>
</head>
<body id="home">
<!-- Navigation bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-danger shadow-sm fixed-top">
<div class="container">
<a class="navbar-brand" href="#">Megumin</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">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="#gallery">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Akhir Navigation bar -->
<!-- Jumbotron -->
<section class="jumbotron text-center">
<img src="img/Megumin.png" alt="Megumin" width="200px" class="rounded-circle img-thumbnail" />
<h1 class="display-4">Megumin</h1>
<p class="lead"></p>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="white"
fill-opacity="1"
d="M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,234.7C672,245,768,235,864,218.7C960,203,1056,181,1152,192C1248,203,1344,245,1392,266.7L1440,288L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
></path>
</svg>
</section>
<!-- Akhir Jumbotron -->
<!--Audio-->
<audio hidden autoplay loop>
<source src="waganawa2 mp3.mp3" type="audio/mpeg" />
Browsermu tidak mendukung tag audio, upgrade donk!
</audio>
<!-- About me -->
<section id="about">
<div class="container">
<div class="row text-center mb-3">
<div class="col" data-aos="fade-down" data-aos-duration="1000">
<h2>About me</h2>
</div>
<div class="row justify-content-center fs-5 text-center">
<div class="col-md-4" data-aos="fade-right" data-aos-duration="1000">
<p>
An arch wizard who is descended from crimson demons; powerful humanoids who possess black hair and red eyes, and sport chuunibyou characteristics. Megumin only knows a single skill, the incredibly powerful explosion magic
that immediately incapacitates her for the rest of the day when cast, and refuses to learn any other skills.
</p>
</div>
<div class="col-md-4" data-aos="fade-left" data-aos-duration="1000" data-aos-delay="200">
<p>
Megumin is a young girl with shoulder-length dark brown hair (smooth black in light novel) and oddly languid crimson-colored eyes. She has fair skin, a light complexion and doll-like features. Unlike her classmates on
Crimson Village, who has a more developed body, Megumin seems to have a delicate under-developed figure.
</p>
</div>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="rgb(230, 210, 210)"
fill-opacity="1"
d="M0,160L48,165.3C96,171,192,181,288,202.7C384,224,480,256,576,266.7C672,277,768,267,864,240C960,213,1056,171,1152,170.7C1248,171,1344,213,1392,234.7L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
></path>
</svg>
</section>
<!-- Akhir About me -->
<!--Skills-->
<section id="skills">
<div class="container">
<div class="row text-center mb-3">
<div class="col">
<h2>My Skills</h2>
</div>
</div>
<div class="row mb-3 justify-content-center">
<div class="col-md-3">
<a href="#">
<img src="img/6.jpg" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/7.jpg" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/14.gif" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/9.jpg" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/explu5.jpg" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/10.gif" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/11.jpg" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
<div class="col-md-3">
<a href="#">
<img src="img/12.jpg" alt="Expulosion" class="img-fluid skills-img" />
</a>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#FFF"
fill-opacity="1"
d="M0,128L48,144C96,160,192,192,288,202.7C384,213,480,203,576,192C672,181,768,171,864,186.7C960,203,1056,245,1152,234.7C1248,224,1344,160,1392,128L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
></path>
</svg>
</section>
<!--Akhir Skills-->
<!-- Gallery -->
<section id="gallery">
<div class="contaier">
<div class="row text-center mb-3">
<div class="col">
<h2>My Gallery</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-4 mb-3">
<div class="card" data-aos="zoom-in" data-aos-duration="500">
<img src="img/1.jpg" class="card-img-top" alt="Megumin1" />
<div class="card-body">
<p class="card-text text-center">Megumin mesem</p>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card" data-aos="zoom-in" data-aos-duration="500" data-aos-delay="100">
<img src="img/2.jpg" class="card-img-top" alt="Megumin2" />
<div class="card-body">
<p class="card-text text-center">Megumin ngguyu</p>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card" data-aos="zoom-in" data-aos-duration="500" data-aos-delay="200">
<img src="img/3.jpg" class="card-img-top" alt="Megumin3" />
<div class="card-body">
<p class="card-text text-center">Expulosiooooooon!</p>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card" data-aos="zoom-in" data-aos-duration="500" data-aos-delay="300">
<img src="img/4.jpg" class="card-img-top" alt="Megumin4" />
<div class="card-body">
<p class="card-text text-center">Megumin tembe tangi turu</p>
</div>
</div>
</div>
<div class="col-md-4 mb-3">
<div class="card" data-aos="zoom-in" data-aos-duration="500" data-aos-delay="400">
<img src="img/5.jpg" class="card-img-top" alt="Megumin5" />
<div class="card-body">
<p class="card-text text-center">Megumin akeh</p>
</div>
</div>
</div>
</div>
</div>
<section id="my-3d">
<div class="container">
<div class="row text-center mb-3">
<div class="col">
<h2>My Model</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 mb-3">
<div class="model-box">
<h3 class="model-name">Megumin gedhe</h3>
<img src="img/megu1.png" alt="megu1" class="model-img" />
<a href="" class="btn btn-light model-detail-button">Show details</a>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="model-box">
<h3 class="model-name">Megumin mini</h3>
<img src="img/megu2.png" alt="megu2" class="model-img" />
<a href="" class="btn btn-light model-detail-button">Show details</a>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="model-box">
<h3 class="model-name">Megumin normal</h3>
<img src="img/megu3.png" alt="megu3" class="model-img" />
<a href="" class="btn btn-light model-detail-button">Show details</a>
</div>
</div>
</div>
</div>
</section>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="rgb(230, 210, 210)"
;
fill-opacity="1"
d="M0,224L48,229.3C96,235,192,245,288,240C384,235,480,213,576,218.7C672,224,768,256,864,256C960,256,1056,224,1152,186.7C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
></path>
</svg>
</section>
<!-- Akhir Gallery -->
<!-- Contact -->
<section id="contact">
<div class="container">
<div class="row text-center mb-3">
<div class="col">
<h2>Contact me</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-6">
<form>
<div class="mb-3">
<label for="Nama" class="form-label">Nama Lengkap</label>
<input type="text" class="form-control" id="Nama" aria-describedby="Nama" />
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" aria-describedby="email" />
</div>
<div class="mb-3">
<label for="pesan" class="form-label">Pesan</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<button type="submit" class="btn btn-danger">Kirim</button>
</form>
</div>
</div>
</div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
<path
fill="#dc3545"
fill-opacity="1"
d="M0,96L48,90.7C96,85,192,75,288,101.3C384,128,480,192,576,181.3C672,171,768,85,864,80C960,75,1056,149,1152,165.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"
></path>
</svg>
</section>
<!-- Akhir Contact -->
<!-- Footer -->
<footer class="bg-danger text-white text-center pb-5">
<p>Created with <i class="bi bi-heart-fill text-dark"></i> by <a href="https://www.instagram.com/zv.alief/" class="text-white fw-bold">Zv. Alief</a></p>
</footer>
<!-- Akhir Footer -->
<!--TEST-->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<!---AOS script-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
const skillsimage = document.querySelectorAll('.skills-img');
skillsimage.forEach((img, i) => {
img.dataset.aos = 'fade-down';
img.dataset.aosDelay = i * 100;
img.dataset.aosDuration = 1000;
});
AOS.init({
once: true,
duration: 400,
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.9.1/TextPlugin.min.js"></script>
<script>
gsap.registerPlugin(TextPlugin);
gsap.to('.lead', { duration: 8, delay: 2.5, text: 'Waga na wa Megumin! Ākuwizādo wo nariwai toshi, saikyou no kougeki no mahou "bakuretsu mahou" wo ayatsuru mono!' });
gsap.from('.jumbotron img', { duration: 1.5, rotateY: 360, opacity: 0, ease: 'bounce.out' });
gsap.from('.navbar', { duration: 1.5, y: '-100%', opacity: 0, ease: 'bounce' });
gsap.from('.display-4', { duration: 1, x: -50, opacity: 0, delay: 0.5, ease: 'back' });
</script>
<script type="text/javascript" src="vanilla-tilt.min.js"></script>
<script type="text/javascript">
VanillaTilt.init(document.querySelectorAll('.model-box'), {
max: 30,
speed: 1000,
scale: 1.05,
glare: true,
});
</script>
</body>
</html>