-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (42 loc) · 1.19 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
57
58
59
<!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>I love Paris</title>
<link rel = "stylesheet" href = "./styles.css" />
<link href="https://fonts.googleapis.com/css?family=Parisienne&display=swap" rel="stylesheet">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div id="titles">
<h1></h1>
<h4></h4>
</div>
<div id="gameInfo-div">
<h1 id="gameInfo1"></h1>
<h1 id="gameInfo2"></h1>
<h4 id="gameInfo3"></h4>
</div>
<div id="score-div">
<h1 id="score">0</h1>
</div>
<div id="recap">
<p id="recap-text"></p>
<p id="recap-answer"></p>
<span id="recap-score"></span>
<table id="recap-table">
<thead>
</thead>
<tbody>
</tbody>
</table>
<button id="next" class="btn">Next</button>
</div>
<section id="container">
</section>
<script src="data.js"></script>
<script src="code.js"></script> -->
</body>
</html>