-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-setting.html
46 lines (42 loc) · 2.03 KB
/
game-setting.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
<!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-setting.js" defer type="module"></script>
</head>
<body>
<header>
<div class="container">
<div class="logo"><img src="./img/logo-header.png" alt="Logo"></div>
</div>
</header>
<section class="s-setting">
<div class="container">
<div class="title animate__animated animate__heartBeat"><img src="./img/choose.png" alt="Choose your favorite artist">
</div>
<form>
<label for="artist" class="search-label">
<input type="search" name="artist" placeholder="Search an artist" required id="artist" list="artistList">
<datalist id="artistList" required></datalist>
<span class="error"></span>
</label>
<button class="btn-submit" type="submit" id="submit-play">Play Now</button>
</form>
</div>
</section>
</body>
</html>