-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>Bentil - Online Quiz</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="">
<!-- content here -->
<div class="container ">
<div class="left">
<img src="./img/logo.png" alt="Logo" id="tilt">
</div>
<div class="right">
<h1 class="title">Welcome to Bentilzone online Quiz</h1>
<h2>Features :-</h2>
<ul>
<li>10 Questions (20 seconds each)</li>
<li>10 Points for correct score</li>
<li>200 seconds timer</li>
<li>Random Questions</li>
<li>Get results Any Time</li>
</ul>
<a href="questions.html">Let's Start Quiz</a>
</div>
</div>
</body>
<script src="js/jquery-3.5.1.min.js"></script>
<script src="js/tilt.min.js"></script>
<script>
$("#tilt").tilt({
scale: 1.1
})
</script>
</html>