-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.scss" />
<script type="module" src="typed.js" defer></script>
<title>QUIZ-ARENA</title>
</head>
<body>
<div class="home-section">
<div
class="w-[500px] h-[10px] text-white py-8 px-24 rounded-lg shadow-4xl font-bold bg-transparent"
>
<span class="welcome"></span>
</div>
<div
class="form-container xl:w-[700px] lg:w-[600px] sm:w-[450px] w-[360px] rounded shadow-2xl mx-auto p-6 mt-8 gap-11"
id="form-container"
>
<h2
class="quizTitle flex align-center justify-center mb-4 text-3xl text-white bg-slate-900 font-bold p-2 rounded-full"
>
QUIZ-ARENA
</h2>
<div class="flex items-center justify-center">
<a
class="bg-slate-900 text-slate-50 py-2.5 px-8 text-2xl rounded-full"
href="/subjects.html"
>Start</a
>
</div>
</div>
</div>
<footer class="text-white text-center">
Created with 💖 by custor Dev
</footer>
<script src="https://unpkg.com/[email protected]/dist/typed.umd.js"></script>
</body>
</html>