-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (82 loc) · 1.78 KB
/
index.html
File metadata and controls
83 lines (82 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lecture Links</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
margin-bottom: 1rem;
}
.lecture-container {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.lecture {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 1rem;
width: 300px;
text-align: center;
}
.lecture h2 {
margin: 0;
margin-bottom: 1rem;
font-size: 1.2rem;
}
.links {
display: flex;
justify-content: space-evenly;
}
.links a {
text-decoration: none;
color: #0073e6;
font-weight: bold;
transition: color 0.2s;
}
.links a:hover {
color: #005bb5;
}
footer {
margin-top: 2rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<h1>Lecture Links</h1>
<div class="lecture-container">
<div class="lecture">
<h2>Lecture 3</h2>
<div class="links">
<a href="./3-idiomatic-and-funcprog/index_cropped.html">Cropped</a>
<a href="./3-idiomatic-and-funcprog/index.html">Uncropped</a>
</div>
</div>
<div class="lecture">
<h2>Lecture 5</h2>
<div class="links">
<a href="./5-testing/index_cropped.html">Cropped</a>
<a href="./5-testing/index.html">Uncropped</a>
</div>
</div>
</div>
<footer>
Made with ❤️
</footer>
</body>
</html>