-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
32 lines (28 loc) · 1.08 KB
/
Copy pathresults.html
File metadata and controls
32 lines (28 loc) · 1.08 KB
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
<!-- results.html -->
<!DOCTYPE html>
<html lang="he" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>תוצאות</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="results-container">
<h1>המשחק נגמר!</h1>
<div class="final-score"><span id="finalScore">0</span> נקודות</div>
<div id="newRecordMessage" class="new-record" style="display: none;">שיא חדש!</div>
<div>ענית נכון על <span id="correctAnswersCount">0</span> מתוך <span id="totalAnswersCount">0</span></div>
<div id="averageTimeDisplay">זמן ממוצע לשאלה: טוען...</div>
<button id="playAgainBtn" class="btn-primary">חזור לדף הבית</button>
<button id="changeGameBtn" class="btn-secondary">שחק שוב</button>
</div>
<div class="results-container">
<h2>סקירת שאלות:</h2>
<div id="questionsReview"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>