-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyquiz.html
42 lines (38 loc) · 1.28 KB
/
myquiz.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
<!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">
<title>MyQuizAU</title>
<link rel="stylesheet" href="./styles/myquiz.css">
<link rel="stylesheet" href="./styles/global.css">
</head>
<body>
<h1>Welcome</h1>
<main class="main0">
<div class="box">
<a href="./exam.html">
<input type="button" value="TAKE EXAM" class="exam-btn">
</a>
<a href="./exam.html">
<input type="button" value="TAKE QUIZ" class="quiz-btn">
</a>
<a href="#">
<input type="button" value="VIEW PAST QUESTION" class="pq-btn">
</a>
<a href="#">
<input type="button" value="CONTACT" class="contact-btn">
</a>
<a href="./About.html">
<input type="button" value="ABOUT US" class="contact-btn">
</a>
</div>
</main>
<br>
<marquee behavior="scroll" direction="left">This is just for educational purposes only, study your course curriculum for exam and test</marquee>
<footer>
© 200lv CSc 2021/2022
</footer>
</body>
</html>