-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
31 lines (29 loc) · 1.07 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
<html>
<head>
<meta charset="utf-8">
<title>toeicQuiz</title>
<link rel="stylesheet" href="styles/index.css">
</head>
<body>
<div id="box">
<h1>Toeic Quiz</h1>
<div id="word-question" hidden></div>
<input id="word-input" type="text" hidden>
<div id="error-message" hidden></div>
<div id="miss-message" hidden></div>
<div id="success-message" hidden>Great ;)</div>
<button id="start-button-fr">English - French</button>
<button id="start-button-en">French - English</button>
<div id="game-over" hidden>
<div id="game-over-message">It's finish ;)</div>
<button id="replay-button">Replay</button>
</div>
<div id="time-message"></div>
<div id="score-message"></div>
</div>
<a href="https://github.com/jeremt/toeicQuiz"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub"></a>
<script src="words.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>