|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="ie=edge" /> |
| 7 | + <title>Quick Quiz - Play</title> |
| 8 | + <link rel="stylesheet" href="app.css" /> |
| 9 | + <link rel="stylesheet" href="game.css" /> |
| 10 | + </head> |
| 11 | + <body> |
| 12 | + <div class="container"> |
| 13 | + <div id="loader"></div> |
| 14 | + <div id="game" class="justify-center flex-column hidden"> |
| 15 | + <div id="hud"> |
| 16 | + <div id="hud-item"> |
| 17 | + <p id="progressText" class="hud-prefix"> |
| 18 | + Question |
| 19 | + </p> |
| 20 | + <div id="progressBar"> |
| 21 | + <div id="progressBarFull"></div> |
| 22 | + </div> |
| 23 | + </div> |
| 24 | + <div id="hud-item"> |
| 25 | + <p class="hud-prefix"> |
| 26 | + Score |
| 27 | + </p> |
| 28 | + <h1 class="hud-main-text" id="score"> |
| 29 | + 0 |
| 30 | + </h1> |
| 31 | + </div> |
| 32 | + </div> |
| 33 | + <h2 id="question"></h2> |
| 34 | + <div class="choice-container"> |
| 35 | + <p class="choice-prefix">A</p> |
| 36 | + <p class="choice-text" data-number="1"></p> |
| 37 | + </div> |
| 38 | + <div class="choice-container"> |
| 39 | + <p class="choice-prefix">B</p> |
| 40 | + <p class="choice-text" data-number="2"></p> |
| 41 | + </div> |
| 42 | + <div class="choice-container"> |
| 43 | + <p class="choice-prefix">C</p> |
| 44 | + <p class="choice-text" data-number="3"></p> |
| 45 | + </div> |
| 46 | + <div class="choice-container"> |
| 47 | + <p class="choice-prefix">D</p> |
| 48 | + <p class="choice-text" data-number="4"></p> |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + <script src="game.js"></script> |
| 53 | + </body> |
| 54 | +</html> |
0 commit comments