-
Notifications
You must be signed in to change notification settings - Fork 162
/
index.html
28 lines (27 loc) · 1.2 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Logo Guessing Game</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="./main.css">
<body>
<h1>Logo Guessing Game</h1>
<div id="game">
<h3>Rules:</h3>
<p>
1. There will be 2 logos of the same company and you have to select the correct logo.
<br>
2. There will be total of 30 sec for the challenge.
<br>
3. You will get 1 point each for the correct ans.
<br>
4. You score will be displayed at the end of the Game
</p>
<a href="./game.html"> <button type="button" class="btn btn-outline-secondary">Start Game</button> </a>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>