-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (68 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=IBM+Plex+Mono:wght@700&display=swap" rel="stylesheet">
<link
href="https://fonts.cdnfonts.com/css/cabinet-grotesk?styles=134960,134961,134957,134958,134959,134955,134956,134954"
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=Inter:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<title>GuessTheVerse</title>
<link rel="stylesheet" href="./css/main.css">
<script src="./js/game-loading.js" defer type="module"></script>
</head>
<body>
<header>
<div class="container">
<div class="logo"><img src="./img/logo-header.png" alt="Logo"></div>
<div class="how-to"><img src="./img/why-label.png" alt="Why play"></div>
</div>
</header>
<main>
<section class="s-welcome">
<div class="container">
<div class="title animate__animated animate__tada">
<h1 class="yellow">where the music</h1>
<h1>magic happens!</h1>
</div>
<p class="description">
We'll drop you some lyric snippets from hit songs of your fav artist, and you've gotta guess the
song title. The closer you
get, the more points you rack up!
</p>
<button class="btn-play">Let's Start</button>
</div>
</section>
</main>
<div class="modal-why-play">
<div class="overlay"></div>
<div class="content">
<i class="fa-regular fa-circle-xmark fa-bounce fa-2xl" style="color: black;" id="icon"></i>
<h3>Why play?</h3>
<ul>
<li><i class="fa-solid fa-wand-magic-sparkles"></i>
<span>Challenge Your Musical Knowledge:</span>
Test how well you
know your favorite songs and discover new ones
along the way.
</li>
<li><i class="fa-solid fa-wand-magic-sparkles"></i><span>Fun for All Ages:</span> Whether you're a
seasoned music
buff or just love a catchy tune, this game is for
you!</li>
<li><i class="fa-solid fa-wand-magic-sparkles"></i><span>Compete with Friends: </span>Share your scores,
challenge
your friends, and see who reigns as the ultimate
lyric guru.</li>
</ul>
</div>
</div>
</body>
</html>