-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ECE3432 Lectures</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
padding: 0;
}
li {
background-color: #fff;
margin: 10px 0;
padding: 15px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
a {
text-decoration: none;
color: #007BFF;
font-weight: bold;
}
a:hover {
color: #0056b3;
}
</style>
</head>
<body>
<h1>ECE3432 Lecture Links</h1>
<ul>
<li><a href="https://lbaitemple.github.io/ECE3432/lec1" target="_blank">Lecture 1</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec2" target="_blank">Lecture 2</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec3" target="_blank">Lecture 3</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec4" target="_blank">Lecture 4</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec5" target="_blank">Lecture 5</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec6" target="_blank">Lecture 6</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec7" target="_blank">Lecture 7</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec9" target="_blank">Lecture 9</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec10" target="_blank">Lecture 10</a></li>
<li><a href="https://lbaitemple.github.io/ECE3432/lec11" target="_blank">Lecture 11</a></li>
</ul>
</body>
</html>