-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
434 lines (398 loc) · 22.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css'>
<link rel='stylesheet' href='https://static.fontawesome.com/css/fontawesome-app.css'>
<link rel='stylesheet' href='https://pro.fontawesome.com/releases/v5.2.0/css/all.css'>
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:400,700'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Oooh+Baby&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" type="image/x-icon" href="img/meta.png">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://kit.fontawesome.com/1f3c27e6e5.js" crossorigin="anonymous"></script>
<style type="text/tailwindcss">
body{
font-family: 'Inter', sans-serif;
}
.navbar-fixed{
@apply fixed z-[9999] bg-slate-900 bg-opacity-20;
backdrop-filter: blur(5px);
box-shadow: inset 0 -1px 0 0 rgba(126, 126, 126, 0.2);
}
.hamburger-line{
@apply w-[30px] h-[2px] my-2 block bg-dark;
}
.hamburger-active > span:nth-child(1){
@apply rotate-45;
}
.hamburger-active > span:nth-child(3){
@apply -rotate-45;
}
.hamburger-active > span:nth-child(2){
@apply scale-0;
}
</style>
<script>
tailwind.config = {
theme: {
container: {
center: true,
padding: '16px',
},
extend: {
fontFamily: {
default: ['Poppins', 'sans-serif'],
subhero: ['Oooh Baby', 'cursive'],
},
colors: {
mermud: '#ec4899',
dark: '#ffffff',
dark2: '#ffffff',
},
screens: {
'2xl': '1320px',
},
},
},
}
</script>
<title>METAVERSE</title>
<!-- <link href="dist/output.css" rel="stylesheet" /> -->
</head>
<body class="bg-slate-900 font-default">
<div class="mx-12">
<!-- Header Section Start -->
<header class="absolute top-0 left-0 z-10 flex items-center w-full bg-transparent">
<div class="container" id="home">
<div class="relative flex items-center justify-between">
<div class="px-4">
<a href="#" class="block px-4 my-6 font-bold bg-white rounded-full tex-lg text-mermud">ME<span class="text-cyan-600">VERS</span></a>
</div>
<div class="flex items-center px-4">
<button id="hamburger" name="hamburger" type="button" class="absolute block right-4 lg:hidden">
<span class="transition duration-300 ease-in-out origin-top-left hamburger-line"></span>
<span class="transition duration-300 ease-in-out hamburger-line"></span>
<span class="transition duration-300 ease-in-out origin-bottom-left hamburger-line"></span>
</button>
<nav id="nav-menu"
class="hidden absolute py-5 bg-white md:bg-opacity-100 bg-opacity-50 shadow-lg rounded-lg max-w-[250px] w-full right-4 top-full lg:block lg:static lg:bg-transparent lg:max-w-full lg:shadow-none lg:rounded-none">
<ul class="block lg:flex">
<li class="group">
<a href="#"
class="flex py-2 mx-8 text-base font-bold lg:font-light lg:text-white text-slate-900">Home</a>
</li>
<li class="group">
<a href="#topdesc"
class="flex py-2 mx-8 text-base font-bold lg:font-light lg:text-white text-slate-900">About</a>
</li>
<li class="group">
<a href="#article"
class="flex py-2 mx-8 text-base font-bold lg:font-light lg:text-white text-slate-900">Article</a>
</li>
<li class="group">
<a href="#member"
class="flex py-2 mx-8 text-base font-bold lg:font-light lg:text-white text-slate-900">Member</a>
</li>
<li class="group">
<a href="#present"
class="flex py-2 mx-8 text-base font-bold lg:font-light lg:text-white text-slate-900">Present</a>
</li>
<li class="group">
<a href="team.html"
class="flex py-2 mx-8 text-base font-bold lg:font-light lg:text-white text-slate-900">Our Team</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</header>
<!-- Header Section End -->
<!-- Hero Section Start -->
<section class="container md:my-32">
<div class="">
<h1 class=" absolute md:block top-1/2 left-1/2 -translate-x-1/2 text-white hidden lg:text-[30px] font-extralight -translate-y-1/2">Introducing the<span id="background-title" class="block -mt-10 font-extrabold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-600 lg:text-[150px] ">
METAVERSE</span>
</h1>
<!-- <h1 class="absolute md:block font-bold top-1/2 left-1/2 -translate-x-1/2 lg:text-[150px] bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-pink-600 -translate-y-1/2">METAVERSE</h1> -->
<img src="img/metaa.png" alt=""class="relative mx-auto mt-32 md:w-[30rem] rounded-full">
<h1 class=" absolute md:block text-transparent top-1/2 left-1/2 -translate-x-1/2 hidden lg:text-[30px] font-extralight -translate-y-1/2">Introducing the<span id="title-hero" class="block -mt-10 font-extrabold lg:text-[150px] ">
METAVERSE</span><span class="text-white float-right text-[20px] -mt-12 font-subhero"><a href="#topdesc" class=" button-a">Virtual Learning for Education</a></span>
</h1>
<h2 id="background-title" class="block my-2 mb-4 text-5xl font-bold text-center md:hidden text-slate-400 sm:text-4xl lg:text-5xl">METAVERSE
</h2>
</div>
</section>
<!-- Hero Section End -->
<!-- Virtual Learning Section Start -->
<div id="topdesc" class="text-transparent md:my-32">test</div>
<section id="desc" class="container md:my-32">
<div class="flex flex-wrap">
<div class="w-full lg:w-1/2 ">
<div class="w-full px-4">
<div class="mx-auto my-3">
<h4 class="px-2 my-4 text-lg font-medium text-center text-white rounded-lg bg-slate-300 bg-opacity-20 lg:w-1/2">Virtual Learning for Education</h4>
<button class="hidden my-3 md:block button-meta" data-text="Awesome">
<span class="text-3xl font-semibold actual-text sm:text-4xl lg:text-5xl">
METAVERSE
</span>
<span class="text-3xl font-semibold hover-text-meta sm:text-4xl lg:text-5xl" aria-hidden="true">
METAVERSE
</span>
</button>
<p class="my-2 font-light text-justify text-gray-200 text-medium md:text-sm">The metaverse in education can be regarded as an educational environment enhanced by metaverse-related technologies which fuse with the elements of the virtual and the real educational environment. </p>
</div>
<i class="mr-2 fa-brands fa-discord" id="icons"></i>
<i class="mx-2 fa-brands fa-meta" id="icons"></i>
<i class="mx-2 fa-brands fa-github" id="icons"></i>
<i class="mx-2 fa-solid fa-vr-cardboard" id="icons"></i>
</div>
</div>
<div class="self-center hidden w-full px-4 mx-auto text-center md:block lg:w-1/2 ">
<div class="card-meta">
<div class="circle"></div>
<div class="my-2 font-light text-justify text-white content text-medium md:text-sm">
<h3 class="px-2 text-lg font-medium text-white rounded-lg bg-slate-300 bg-opacity-20">Virtual Reality</h3>
<p class="text-gray-200">Using VR technology in our Metaverse Program will provide students with relational and immersive experiences.</p>
<a href="#member" class="rainbow-btn">Learn More</a>
</div>
<img src="img/vr.png" class="" alt="">
</div>
<div class="relative mt-10 lg:mt-9 lg:right-0">
<span class="absolute -translate-x-1/2 -bottom-0 -z-10 left-1/2 md:scale-125">
</span>
</div>
</div>
</div>
<div class="font-normal capitalize my-14 lg:my-0 kodfun-galeri">
<div style="background-image: url('img/card1.jpg');" class="content_img">
<div>immersive learning experiences</div>
</div>
<div style="background-image: url('img/card2.jpg');" class="content_img">
<div>greater learning speed</div>
</div>
<div style="background-image: url('img/card3.jpg');" class="content_img">
<div>an inclusive environment</div>
</div>
<div style="background-image: url('img/card4.jpg');" class="content_img">
<div>makes virtual interactions</div>
</div>
<div style="background-image: url('img/card5.jpg');" class="content_img">
<div>an ability to acquire hands-on experience</div>
</div>
</div>
</section>
<!-- Virtual Learning Section End -->
<!-- News Section Start -->
<div id="article" class="text-transparent md:my-32">test</div>
<section class="container">
<div class="my-3">
<h4 class="px-2 mx-auto my-4 text-lg font-medium text-center text-white capitalize rounded-lg bg-slate-300 bg-opacity-20 lg:w-1/6">article</h4>
<div class="flex justify-center">
<h2 id="background-title" class="mb-4 text-3xl font-bold text-slate-400 sm:text-4xl lg:text-5xl">MEVERS News
</h2>
</div>
<p class="font-medium text-center text-medium text-stone-600 md:text-lg">Latest
</p>
</div>
<div class="my-12 font-normal capitalize kodfun-galeri ">
<div style="background-image: url('img/card6.jpg');" class="content_img">
<div class="md:w-1/2">What Is the Metaverse, Exactly?
<span class="text-sm font-light text-slate-500">
Saturday, 18-02-2023
</span>
<br><br> <a href="news/news1.html" class="px-5 py-1 font-medium rounded-md text-[5px] md:text-[12px] hover:text-white text-slate-900 rainbow-btn hover:bg-transparent bg-slate-50">Read More</a>
</div>
</div>
<div style="background-image: url('img/card7.jpg');" class="content_img">
<div class="md:w-1/2"> The Metaverse Will Reshape Our Lives. Let's Make Sure <br>
<span class="text-sm font-light text-slate-500">
Saturday, 18-02-2023
</span>
<br><br> <a href="news/news2.html" class="px-5 py-1 font-medium rounded-md text-[5px] md:text-[12px] hover:text-white text-slate-900 rainbow-btn hover:bg-transparent bg-slate-50">Read More</a>
</div>
</div>
<div style="background-image: url('img/card8.jpg');" class="content_img">
<div class="md:w-1/2">the metaverse will take the virtual reality experience to the next level <br>
<span class="text-sm font-light text-slate-500">
Saturday, 18-02-2023
</span>
<br><br> <a href="news/news3.html" class="px-5 py-1 font-medium rounded-md text-[5px] md:text-[12px] hover:text-white text-slate-900 rainbow-btn hover:bg-transparent bg-slate-50">Read More</a>
</div>
</div>
<div style="background-image: url('img/card9.jpg');" class="content_img">
<div class="md:w-1/2">The Metaverse: A world within our world <br>
<span class="text-sm font-light text-slate-500">
Saturday, 18-02-2023
</span>
<br><br> <a href="news/news4.html" class="px-5 py-1 font-medium rounded-md text-[5px] md:text-[12px] hover:text-white text-slate-900 rainbow-btn hover:bg-transparent bg-slate-50">Read More</a>
</div>
</div>
<div style="background-image: url('img/card10.jpg');" class="content_img">
<div class="md:w-1/2">Metaverse: Alternate Reality is the Next Big Thing After <br>
<span class="text-sm font-light text-slate-500">
Saturday, 18-02-2023
</span>
<br><br> <a href="news/news5.html" class="px-5 py-1 font-medium rounded-md text-[5px] md:text-[12px] hover:text-white text-slate-900 rainbow-btn hover:bg-transparent bg-slate-50">Read More</a>
</div>
</div>
</div>
</section>
</div>
</body>
<!-- News Section End -->
<!-- Present Section Start -->
<div id="member" class="text-transparent">test</div>
<section class="container md:my-32">
<div class="items-center mx-auto my-3">
<h4 class="w-4/5 px-2 mx-auto my-4 text-lg font-medium text-center text-white capitalize rounded-lg bg-slate-300 bg-opacity-20 lg:w-1/6">Join membership</h4>
<div class="flex justify-center">
<button class="hidden my-3 md:block button-meta" data-text="Awesome">
<span class="text-3xl font-semibold text-center actual-text sm:text-4xl lg:text-5xl">
METAVERSE
</span>
<span class="text-3xl font-semibold hover-text-meta sm:text-4xl lg:text-5xl" aria-hidden="true">
METAVERSE
</span>
</button>
</div>
<p class="w-9/12 mx-auto my-2 font-light text-justify text-gray-200 md:text-center text-medium md:text-sm">The World’s First Educational Metaverse Designed for the Classroom. Create Immersive and Engaging Lessons with Free Educational VR & AR Content. Qualified Teachers. 3D Models.
Meverse Expeditions is packed full of engaging VR & AR content such as 360-degree photos, videos and 3D models to let the students experience the subjects and topics they’re learning.
</p>
<div class="mx-auto my-16 cursor-default card-member">
<i class="absolute mx-auto opacity-50 lg:block sm:hidden -translate-y-7 fa-brands fa-meta logo-card logo-card-bg"></i>
<div class="card-member2">
<div class=" card-member3">
<i class="relative fa-brands fa-meta logo-card"></i>
</div>
<div class="card-member4">
<i class="fa-solid fa-user chip text-slate-900"></i>
<img src="img/logo-smk.png" alt="" class="card-logo ml-7">
<h2 class="font-normal card-number">0051074861</h2>
<h3 class="card-reg">STUDENT 0101021200</h3>
<h3 class="card-num2">SOFTWARE ENGINEERING</h3>
<i class="relative fa-brands fa-meta cartao__logo-card"></i>
</div>
</div>
</div>
</div>
</section>
<section class="mx-12 md:my-32 bg-gradient1">
<div class="flex flex-wrap">
<div class="w-full lg:w-2/5">
<div class="md:w-full">
<img src="img/meta-people.png" class="rounded-l-[50px] hidden md:block h-[200px] md:h-[500px]" alt="">
</div>
</div>
<div class="self-center w-full px-4 py-12 mx-auto my-auto text-center md:text-justify md:py-0 lg:w-3/5">
<h1 class="font-bold text-white md:mr-12 md:text-5xl "> Let's create your avatar in the world of METAVERSE <br> <span class="font-bold hidden md:block bg-slate-900 absolute md:w-[57%] text-mermud py-3 pl-10 rounded-full items-center text-lg md:my-6 md:text-3xl"> ME<span class="text-cyan-400">VERS</span></span></h1>
<div class="relative mt-10 lg:mt-9 lg:right-0">
<span class="absolute -translate-x-1/2 -bottom-0 -z-10 left-1/2 md:scale-125">
</span>
</div>
</div>
</section>
<div id="present" class="text-transparent md:my-32">test</div>
<section class="container md:my-32">
<div>
<div class="w-full px-4">
<div class="mx-auto mb-8 text-center">
<h4 class="w-4/5 px-2 mx-auto my-4 text-lg font-medium text-center text-white capitalize rounded-lg bg-slate-300 bg-opacity-20 lg:w-1/6">supported by</h4>
<h2 id="background-title" class="mb-4 text-3xl font-bold text-slate-400 sm:text-4xl lg:text-5xl">SMKN 2 SUMEDANG
</h2>
</div>
</div>
<div class="w-full px-4">
<p class="font-medium text-center text-medium text-stone-600 md:text-lg">thanks to
</p>
<div class="flex flex-wrap items-center justify-center my-2">
<span href=""
class="max-w-[120px] mx-4 my-4 grayscale opacity-60 transition hover:grayscale-0 hover:opacity-100 duration-500 lg:mx-6 xl:mx-8">
<img src="img/Logo Himmi.png" alt="himmi">
</span>
<span href=""
class="max-w-[220px] mx-4 my-4 grayscale opacity-60 transition hover:grayscale-0 hover:opacity-100 duration-500 lg:mx-6 xl:mx-8">
<img src="img/logo-difest.png" alt="logo-difest.png">
</span>
<span href=""
class="max-w-[120px] mx-4 my-4 grayscale opacity-60 transition hover:grayscale-0 hover:opacity-100 duration-500 lg:mx-6 xl:mx-8">
<img src="img/logoPOLSUB-HD.png" alt="polsub">
</span>
<span href=""
class="max-w-[100px] mx-4 my-4 grayscale opacity-60 transition hover:grayscale-0 hover:opacity-100 duration-500 lg:mx-6 xl:mx-8">
<img src="img/logo-smk.png" alt="rpl">
</span>
</div>
</div>
</div>
</section>
</div>
</body>
<!-- Present Section End -->
<!-- Footer Section Start -->
<footer class="p-4 sm:p-6 bg-gradient-footer">
<div class="px-16 py-10 md:flex md:justify-between">
<div class="mb-6 md:mb-0">
<h2 class="mb-4 text-3xl font-bold text-slate-400 lg:text-3xl">MEVERS
</h2>
<div class="text-sm font-light text-slate-200">
<p class="my-2 font-bold hover:text-slate-900"><a href="https://www.smkn2sumedang.sch.id/">SMKN 2 SUMEDANG</a></p>
<p class="pr-5">59, Jl. Arif Rahman Hakim, Kotakaler, Sumedang Utara, Sumedang Regency, West Java 45355</p>
<p class="my-2">(0261) 201531</p>
</div>
</div>
<div class="grid grid-cols-2 gap-8 sm:gap-6 sm:grid-cols-3">
<div>
<h2 class="mb-6 text-sm font-semibold text-white uppercase">Team</h2>
<ul class="text-gray-400 ">
<li class="mb-4">
<a href="team.html" class="hover:text-slate-900">Nurchayati Amalia Abdillah</a>
</li>
<li class="mb-4">
<a href="team.html" class="hover:text-slate-900">Aisyah Nur Fadilah</a>
</li>
</ul>
</div>
<div>
<h2 class="mb-6 text-sm font-semibold text-white uppercase">Follow us</h2>
<ul class="text-gray-400 ">
<li class="mb-4">
<a href="#" class="hover:text-slate-900 ">Github</a>
</li>
<li>
<a href="#" class="hover:text-slate-900">Discord</a>
</li>
</ul>
</div>
<div>
<h2 class="mb-6 text-sm font-semibold text-white uppercase">Legal</h2>
<ul class="text-gray-400 ">
<li class="mb-4">
<a href="#" class="hover:text-slate-900">Privacy Policy</a>
</li>
<li>
<a href="#" class="hover:text-slate-900">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</div>
<hr class="my-6 border-white borde lg:my-8" />
<div class="mx-12 sm:flex sm:items-center sm:justify-between">
<span class="text-sm text-gray-400 text-gr">© 2023 <a href="#" class="hover:underline">SMKN 2 Sumedang</a>. All Rights Reserved.
</span>
<div class="flex mt-4 space-x-6 sm:justify-center sm:mt-0">
<i class="mr-2 fa-brands fa-discord" id="icons"></i>
</div>
</div>
</footer>
<!-- Footer Section Start -->
<script src="script.js"></script>