-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
45 lines (42 loc) · 1.65 KB
/
main.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
<!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>Quizee</title>
<link rel="stylesheet" href="style1.css">
<link rel="stylesheet" href="about us.html">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link
href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&family=Merriweather&family=Playfair+Display&display=swap"
rel="stylesheet">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="logo1.png" alt="logo">
</div>
<p>uizee</p>
<ul>
<li class="item"><a href="#home" class="active">Home</a></li>
<li class="item"><a href="about us.html">About Us</a></li>
<!-- <li class="item"><a href="#contact">Contact Us</a></li> -->
</ul>
<div class="right">
<button class="butn" onclick="document.location='../login.php'">Login</button>
<button class="butn" onclick="document.location='../register.php'">Register</button>
</div>
</nav>
<section id="home">
<h1 class="h-primary">Confused about the right stream after class 10th?</h1>
<p>Scientific Stream Selection & Career Planning for class 9-10th. </p>
<button class="btn" onclick="document.location='../login.php'">Take the Test</button>
</section>
<footer>
<div class="center">
Copyright © www.Quizee.com. All rights reserved!
</div>
</footer>
</body>
</html>