-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
34 lines (34 loc) · 1.16 KB
/
game.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="app.css" />
<link rel="stylesheet" href="game.css" />
<title>Riddle Master - Solve</title>
</head>
<body>
<div class="container">
<div id="game" class="flex-center flex-column">
<h2 id="question">What is the answer to this Riddle?</h2>
<div class="choice-container">
<p class="choice-prefix">A</p>
<p class="choice-text">Choice 1</p>
</div>
<div class="choice-container">
<p class="choice-prefix">B</p>
<p class="choice-text">Choice 2</p>
</div>
<div class="choice-container">
<p class="choice-prefix">C</p>
<p class="choice-text">Choice 3</p>
</div>
<div class="choice-container">
<p class="choice-prefix">D</p>
<p class="choice-text">Choice 4</p>
</div>
</div>
</div>
</body>
</html>