-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 2.51 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!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>Attendance Tracker</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="#about"><li>About</li></a>
<a href="#howtouse"><li>How to use</li></a>
</ul>
<h3>Online Attendance System</h3>
<ul>
<a href="teachersignup.html"><li>Teacher Signup</li></a>
<a href="studentsigup.html"><li>Student Signup</li></a>
</ul>
</nav>
</header>
<main>
<section class="mainfront">
<div class="container">
<div class="first">
<img src="attendance logo.png" alt="attendance logo">
</div>
<div class="second">
<div class="upsecond">
Attendance Tracking System
</div>
<div class="midsecond">
A simple attendance tracking system for teachers and students
</div>
<div class="downsecond">
<a href="teachersignup.html">Teacher Signup</a>
<a href="studentsigup.html">Student Signup</a>
</div>
</div>
<hr>
</div>
<div id="about">
<h3>About</h3>
<hr>
<p>This is a mini <b>Attendance Tracker</b> project. To know more, go to <a href="#" id="guide">Guide</a>.<br>Project By:- Swanand Bhuskute</p>
</div>
<div id="howtouse">
<h3>How to use</h3>
<hr>
<p>
This is a mini attendance tracker system project.<br>
Usage:<br>
1. In teacher login, a teacher will be able to see the students available and mark their attendance and update data.<br>
2. In student login, a student will be able to see his profile and see his attendance percentage.<br>
3. Data will be stored in localstorage.<br>
</p>
</div>
</main>
<footer style="font-size: 1.2rem; margin-left: 15px; padding: 7px 0px;">
<hr>
© Copyright
</footer>
<script src="index.js"></script>
</body>
</html>