-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 1.54 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
<!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>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#assignments">Assignments</a></li>
<li><a href="#class_notes">Class Notes</a></li>
<li><a href="#extras">EXTras</a></li>
<li><a href="#final_project">Final Project</a></li>
<li><a href="#tests">Test</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<main>
<article>
<section>
<h1>About</h1>
</section>
<section>
<h1 id="#assignments">Assignments</h1>
</section>
<section>
<h1 id="#class_notes">Class notes</h1>
</section>
<section>
<h1 id="tests">Tests</h1>
</section>
<section>
<h1 id="extras">Extras</h1>
</section>
<section>
<h1 id="final_project">Final Project</h1>
</section>
</article>
</main>
<footer><p>© Ahmad Abdullah 2022</p></footer>
</body>
</html>