-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Technology Noticeboard</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/noticelist.css">
<link rel="stylesheet" href="./css/noticedetails.css">
<script src="./js/index.js" defer></script>
</head>
<body>
<div class="title">Technology Noticeboard</div>
<div class="container">
<!-- List of Notices -->
<div class="noticeList">
<div id="no-notice">No notice available to display</div>
<!-- <div class="notice">
<h3>Notice Title</h3>
<h5>Notice Timestamp</h5>
</div> -->
</div>
<!-- Description of clicked notice -->
<div class="notice-details">
<div class="select-notice">Select a notice to display</div>
<!-- <h2>Notice Title</h2>
<hr>
<p>
<pre>Notice Content</pre>
</p>
<hr>
<h5>Notice Timestamp</h5> -->
</div>
</div>
<div class="footer">
<pre>Maintained by <a href="./pages/techcoordi.html" target="_blank">Technology Coordinators(s), Technology Students' Gymkhana, IIT Kharagpur</a></pre>
</div>
</body>
</html>