-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (37 loc) · 1.07 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
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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Online Test</title>
</head>
<body>
<header>
<div class="logo">
<img src="/images/logo.png" alt="Logo">
<h1>QUIZZER</h1>
</div>
<div class="title">
Online Test
</div>
</header>
<main>
<div id="content">
<!-- Content will be dynamically generated here -->
</div>
<div id="footer">
<div class="left">
<p id="date">Date: </p>
</div>
<div class="right">
<p id="time">Time: </p>
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>