-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 1.52 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
45
46
47
48
<!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">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/home.css">
<title>Pariksha-NITC</title>
</head>
<body>
<nav class="nav-bar">
<div class="title">
<h3>Pariksha-NITC</h3>
</div>
<div class="nav-links-container">
<a href="index.html" class="nav-link">Home</a>
<a href="resources.html" class="nav-link">Resources</a>
<a href="members.html" class="nav-link">Members</a>
<a href="contact.html" class="nav-link">Contact</a>
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<div class="home-div">
<h1 class="project-title">
Online Test Application
</h1>
<p class="description">
A generic concurrent web application for teachers to conduct online tests and for students to take the test
</p>
<button class="button rounded-corners" id="button">Learn More</button>
<script type="text/javascript">
document.getElementById('button').onclick = ()=>{
location.href = 'about.html';
};
</script>
</div>
<script src="assets/js/index.js"></script>
</body>
</html>