-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (45 loc) · 2 KB
/
index.html
File metadata and controls
53 lines (45 loc) · 2 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Alfred's Assignment List</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Bitcount+Grid+Single:wght,ELSH@100..900,35.4&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Exa:wght@100..900&display=swap" rel="stylesheet">
</head>
<body class="container">
<div class="forms">
<h1 class="green">Hi, welcome to my assignment list page</h1>
<h2 class="green">Lecture 2</h2>
<ol>
<li><a href="./2ndLecture/index.html">Simple Bio Page</a></li>
</ol>
<h2 class="green">Lecture 3</h2>
<ol>
<li><a href="./3rdLecture/form.html">Simple Form</a></li><br>
<li><a href="./3rdLecture/frame.html">Frame</a></li><br>
<li><a href="./3rdLecture/table.html">Table</a></li>
</ol>
<h2 class="green">Lecture 4</h2>
<ol>
<li><a href="./4thLecture/page.html">Simple Landing Page</a></li>
</ol>
<h2 class="green">Lecture 5</h2>
<ol>
<li><a href="./5thlecture/form/index.html">Form With Features</a></li><br>
<li><a href="./5thlecture/searching/index.html">Postal Code Searcher</a></li><br>
<li><a href="./5thlecture/dynamicDropdown/index.html">Dynamic Dropdown</a></li>
</ol>
<h2 class="green">Lecture 6</h2>
<ol>
<li><a href="./6thLecture/index.html">Simple Landing Page</a></li>
</ol>
<h2 class="green">Lecture 7</h2>
<ol>
<li><a href="./7thlecture/index.html">Form With AJAX</a></li>
</ol>
<h2 class="green">Mid Term</h2>
<ol>
<li><a href="./MidTerm/index.html">Toy Renting Website</a></li>
</ol>
</div>
</body>
</html>