-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantic-demo.html
39 lines (39 loc) · 1.03 KB
/
semantic-demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Timetable View Semantic Demo</title>
<!-- <link rel="stylesheet" href="./main.css"> -->
</head>
<body>
<header>
<h1>Timetable View Semantic Demo</h1>
<h2>Time</h2>
<p><time>1nd September 2021<br>03:27:21</time></p>
</header>
<main>
<h2>Events</h2>
<ol>
<li>
<article>
<p>37132 Int. to Mathematical Analysis and Modelling</p>
<p>Lecture (Group 1) for 1h 30m</p>
<p>@ 2:00 pm Online</p>
</article>
</li>
<li>
<article>
<p>37181 Discrete Mathematics</p>
<p>Lecture (Group 1) for 1h 30m</p>
<p>@ 6:00 pm Online</p>
</article>
</li>
</ol>
</main>
<footer>
<h2>Acknowledgements</h2>
<p>This tool uses Free and Open Source software, view <a href="https://github.com/sunsetkookaburra/timetable-view#third-party">Third-Party Licenses</a>.</p>
<p>(C) 2021 - Oliver Lenehan (1st Year CompSci @ UTS)</p>
</footer>
</body>
</html>