generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Nanotechnology Quiz to Test Your Knowledge" />
<meta
name="keywords"
content="Nanotechnology, Learn, Germany, Quiz, Questions"
/>
<title>Welcome to Nanotechnology Quiz</title>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body class="body-index">
<div class="welcome-container">
<h1>Welcome to the Nanotechnology Quiz</h1>
<hr />
<p>Test your knowledge in the exciting field of nanotechnology!</p>
<p>
There are 10 questions in total and you need to answer at least 6
questions correctly to win the Quiz.
</p>
<p>
The appearance of various chickens, each accompanied by a distinct song,
will be determined based on the ultimate outcome. Also, There is a table
where you can see your scores for each attempt.
</p>
<hr />
<p><em> Are you ready to begin? </em></p>
<button class="go-to-quiz-button" onclick="goToQuizPage()">
Go to Quiz Page
</button>
</div>
<script src="javascript/questions.js"></script>
<script src="javascript/script.js"></script>
</body>
</html>