-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodaysquiz.html
54 lines (54 loc) · 2.43 KB
/
todaysquiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Today's Quiz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="navbar">
<a href="index.html" class="nav-link">Home</a>
<a href="todaysquiz.html" class="nav-link">Today's Quiz</a>
<a href="pastquizzes.html" class="nav-link">Past Quizzes</a>
</nav>
<div class="container">
<h1>Today's Quiz</h1>
<img src="images/Daily English Quiz.png" alt="All Skills English Logo" id="logo">
<h2>Present Continuous for Future Plans</h2>
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/gzsXG5KXepI" frameborder="0" allowfullscreen></iframe>
</div>
<div class="questions">
<h2>Choose the best answer.</h2><br>
<form id="quiz-form">
<div class="question">
<p>1. Maria _____ to France next week.</p>
<label><input type="radio" name="q1" value="a"> A. will going</label><br>
<label><input type="radio" name="q1" value="b"> B. is going</label><br>
<label><input type="radio" name="q1" value="c"> C. are going</label><br><br>
</div>
<div class="question">
<p>2. What _____ you doing tomorrow night?</p>
<label><input type="radio" name="q2" value="a"> A. are</label><br>
<label><input type="radio" name="q2" value="b"> B. will</label><br>
<label><input type="radio" name="q2" value="c"> C. is</label><br><br>
</div>
<div class="question">
<p>3. We _____ not doing this again!</p>
<label><input type="radio" name="q3" value="a"> A. will</label><br>
<label><input type="radio" name="q3" value="b"> B. are</label><br>
<label><input type="radio" name="q3" value="c"> C. is</label><br><br>
</div>
<button type="button" onclick="calculateScore()">Submit</button>
</form>
<div id="result"></div>
<br>
<br>
<br>
<br>
</div>
</div>
<script src="script.js"></script>
</body>
</html>