This repository has been archived by the owner on Sep 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 2.1 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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">
<title>Memory Game - ITC Bootcamp Oct 2019</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
</head>
<body>
<header>
<img src="images/itc-logo.png">
<div class="title">
<h1>Memory Game</h1>
<h2>2019 Oct <span id="edition"></span> Edition</h2>
</div>
<img src="images/itc-logo-hacked.png">
</header>
<section id="score-container">
<div class="score-row">
<div class="count-container">
<span class="count-title">Right Answers: </span>
<span id="right-answer-count" class="count"></span>
</div>
<div class="count-container">
<span class="count-title">Wrong Answers: </span>
<span id="wrong-answer-count" class="count"></span>
</div>
<div class="count-container">
<span class="score-title">Score: </span>
<span id="score" class="count"></span>
</div>
</div>
<div class="score-row">
<span class="score-title new-game">New Game: </span>
<button name="level1-btn" class="new-game-btn new-game active">Newb</button>
<button name="level2-btn" class="new-game-btn new-game">Geek</button>
<button name="level3-btn" class="new-game-btn new-game">Ninja</button>
</div>
</section>
<section id="game-container">
<div id="game"></div>
</section>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>