-
Notifications
You must be signed in to change notification settings - Fork 4
/
chooseBots.html
47 lines (47 loc) · 1.69 KB
/
chooseBots.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quizaa</title>
<link rel="stylesheet" href="./CSS/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./CSS/chooseBots.css" />
<script src="./Scripts/main.js"></script>
<script src="./Scripts/chooseBots.js"></script>
</head>
<body>
<header class="header"><a href="./menu.html">QUIZAA</a></header>
<main class="main center">
<h1 class="title">Choose your opponents</h1>
<div class="bots-container">
<div class="bot-box" id="bot1">
<h2 class="bot-name">Silly bot</h2>
<img class="bot-img" src="./Assets/silly.png" alt="" />
</div>
<div class="bot-box" id="bot2">
<h2 class="bot-name">Hardcore bot</h2>
<img class="bot-img" src="./Assets/hardcore.png" alt="" />
</div>
<div class="bot-box" id="bot3">
<h2 class="bot-name">Dumb bot</h2>
<img class="bot-img" src="./Assets/dumb.png" alt="" />
</div>
</div>
<div class="button-container">
<button class="primary-button-lg" id="startGameContinue">
Continue
</button>
<span id="pickBot" class="pick-bot"
>You need to pick at least one bot to play against</span
>
</div>
</main>
<footer class="footer"><a href="https://icons8.com/">icons8.com</a></footer>
</body>
</html>