-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 2.58 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
<!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">
<link rel="stylesheet" type="text/css" href="./style/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<script async src="script.js"></script>
<title>Friends' quotes Game</title>
</head>
<body>
<header>
<h1><i class="fas fa-circle first-colour-circle"></i> Friends' <i class="fas fa-circle second-colour-circle"></i> quotes <i class="fas fa-circle third-colour-circle"></i> Game <i class="fas fa-circle first-colour-circle"></i> ! <i class="fas fa-circle second-colour-circle"></i></h1>
</header>
<main>
<article class="question-answers-block">
<p class="question">Who said that ?</p>
<p class="quote">The website is charging the quote from the server. Please wait.</p>
<section class="answers">
<div class="answer-block">
<p class="answer first-colour-answer">Chandler</p>
</div>
<div class="answer-block">
<p class="answer second-colour-answer">Joey</p>
</div>
<div class="answer-block">
<p class="answer third-colour-answer">Monica</p>
</div>
<div class="answer-block">
<p class="answer second-colour-answer">Phoebe</p>
</div>
<div class="answer-block">
<p class="answer third-colour-answer">Rachel</p>
</div>
<div class="answer-block">
<p class="answer first-colour-answer">Ross</p>
</div>
</section>
</article>
<article class="bottom-block">
<p class="score-block">Your score : <span id="score">0</span> / 18</p>
<button class="reset-button">Reset</button>
</article>
<div class="ending-opacity">
</div>
<div class="ending-block">
<h2>All done !</h2>
<p id="final-score"></p>
<p id="ending-sentence"></p>
<p>Do you want to try this test again ?</p>
<button onClick="window.location.reload(true)">Yes, let's go</button>
</div>
</main>
<div class="after-answering"><p id="after-answering-sentence">Coucou</p></div>
</body>
</html>