-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
50 lines (44 loc) · 1.25 KB
/
quiz.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
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Bio Help</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#000000">
</head>
<body>
<div id="header">
<div>
<a href="index.html" id="logo"><img src="images/logo.png" alt="logo"></a>
<ul>
<li>
<a href="index.html">Important Points</a>
</li>
<li>
<a href="papers.html">Previous Papers</a>
</li>
<li class="selected">
<a href="quiz\startpage.html"> Bio Quiz</a>
</li>
</ul>
</div>
</div>
<div id="body" class="contact">
<object type="text/html" data="quiz\startpage.html" width="800px" height="600px" style="overflow:auto;border:5px ridge blue">
</object>
</div>
<div id="footer">
<div>
<p>
© 2023 Bio Help. All Rights Reserved.
</p>
</div>
</div>
</body>
</html>