-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex3.html
51 lines (51 loc) · 1.52 KB
/
index3.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
<!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>CS2215 Website</title>
<style type="text/css">
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #444;
padding: 0 10px;
}
h1,
h2,
h3 {
line-height: 1.2;
}
</style>
</head>
<body>
<h1>CS2215 Website</h1>
<h2>Welcome to the CS2215 Website</h2>
<p>This is a website for CS2215 code</p>
<!-- Week 03-->
<h2>Week 03</h2>
<hr />
<h3>Class notes</h3>
<ul>
<li><a href="./wk03/class_notes/index.html">Class notes</a></li>
</ul>
<h3>Assignment from notes</h3>
<ul>
<li><a href="./wk03/assignment/project1.html">Project 1</a></li>
<li><a href="./wk03/assignment/project2.html">Project 2</a></li>
<li><a href="./wk03/assignment/project3.html">Project 3</a></li>
</ul>
<h3>Assignment from LMS</h3>
<ul>
<li><a href="./wk03/assignment/q1.html">Question 1</a></li>
<li><a href="./wk03/assignment/q2a.html">Question 2a</a></li>
<li><a href="./wk03/assignment/q2b.html">Question 2b</a></li>
<li><a href="./wk03/assignment/q3.html">Question 3</a></li>
<li><a href="./wk03/assignment/q4.html">Question 4</a></li>
<li><a href="./wk03/assignment/q5.html">Question 5</a></li>
</ul>
</body>
</html>