-
Notifications
You must be signed in to change notification settings - Fork 0
/
stCurriculum.html
73 lines (73 loc) · 2.66 KB
/
stCurriculum.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
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NEXUS-Curriculum</title>
<link rel="stylesheet" href="student.css">
<script src="https://d3js.org/d3.v6.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="navbar">
<div class="navelement navlogo">
<h2>NEXUS</h2>
</div>
<input type="checkbox" id="check">
<label for="check">
<i class="fa fa-align-justify button" id="btn" class="button"></i>
<i class="fa fa-remove" id="cancel" class="button"></i>
</label>
<div class="icon-bar">
<a class="active" href="stDash.html">Dashboard</a>
<a href="stAttendance.html">Attendance</a>
<a href="stCurriculum.html">Curriculum</a>
<a href="stSchedule.html">Schedule</a>
<a href="stMarks.html">Marks</a>
</div>
<section></section>
<div class="navelement navlinks">
<div class="link" ><a href="stDash.html">Dashboard</a></div>
<div class="link"><a href="stAttendance.html">Attendance</a></div>
<div class="link active"><a href="stCurriculum.html">Curriculum</a></div>
<div class="link"><a href="stSchedule.html">Schedule</a></div>
<div class="link"><a href="stMarks.html">Marks</a></div>
</div>
<div class="navelement navicons">
<div class="icon1">
<i class="fa fa-bell-o"></i>
</div>
<div class="icon2">
<i class="fa fa-user-circle-o"></i>
</div>
</div>
</div>
<div class="wip" style="align-self: center; width: fit-content; height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: center;">
<h1>This Page is Still Under Construction</h1>
<p style="text-align: center; padding: 1vh;">The devs are working hard on bringing this to you as soon as possible<br>Thank you...</p>
</div>
<!-- <div class="curriculum">
<div class="tile cspan2">
<div class="title">
<h3>A</h3>
</div>
</div>
<div class="tile cspan2">
<div class="title">
<h3>B</h3>
</div>
</div>
<div class="tile">
<div class="title">
<h3>C</h3>
</div>
</div>
<div class="tile cspan2">
<div class="title">
<h3>D</h3>
</div>
</div>
</div> -->
<script src="student.js"></script>
</body>
</html>