-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-result.html
45 lines (42 loc) · 1.74 KB
/
game-result.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
<!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"
/>
<link rel="stylesheet" href="./css/main.css">
<title>GuessTheVerse</title>
<script src="./js/game-result.js" defer></script>
</head>
<body>
<header class="game-result">
<div class="container">
<img src="./img/guess-label.png" alt="Guess The Verse">
</div>
</header>
<main>
<section class="s-result">
<div class="container">
<div class="title animate__animated animate__tada">
<h1 class="green" id="headline">where the music</h1>
<h1 id="message">magic happens!</h1>
</div>
<button class="btn-play" id="play-again">Play Again</button>
</div>
</section>
</main>
</body>
</html>