-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
44 lines (38 loc) · 1.54 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="home.css">
<script>
function startQuiz() {
// Change the page location to "quiz.html"
window.location.href = "quiz.html";
}
</script>
<script src="
https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js
"></script>
<link href="
https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.min.css
" rel="stylesheet">
</head>
<body>
<div class="main">
<div class="header">
<div class="min-width">
<div class="quiz-logo"><h1>Quiz <span class="span">App</span></h1></div>
<a href="index.html" class="header-link">Logout</a>
</div>
</div>
<div class="html-quiz">
<h2 class="html-h2">Html <span class="span">Quiz</span></h2>
<p class="para"> HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page.HTML (Hypertext Markup Language) is a text-based approach to describing how content contained within an HTML file is structured. This markup tells a web browser how to display text, images and other forms of multimedia on a webpage.</p>
<button class="start-btn" onclick="startQuiz()">Start Quiz</button>
</div>
</div>
<div class="round c1"></div>
<div class="round c2"></div>
</body>
</html>