-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (87 loc) · 2.62 KB
/
index.html
File metadata and controls
101 lines (87 loc) · 2.62 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CS180 Portfolio</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
max-width: 900px;
margin: 0 auto;
padding: 20px;
background-color: #f9f9f9;
color: #333;
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
.intro {
background-color: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 30px;
}
.projects {
display: grid;
gap: 15px;
}
.project-link {
display: block;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
text-decoration: none;
color: #2c3e50;
transition: transform 0.2s, box-shadow 0.2s;
}
.project-link:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.project-link h2 {
margin: 0 0 8px 0;
color: #3498db;
font-size: 1.2em;
}
.project-link p {
margin: 0;
color: #666;
font-size: 0.95em;
}
</style>
</head>
<body>
<h1>CS180 Portfolio</h1>
<div class="intro">
<p>Welcome to my CS180 (Intro to Computer Vision and Computational Photography) project portfolio.</p>
</div>
<div class="projects">
<a href="./0/index.html" class="project-link">
<h2>Project 0</h2>
<p>Introduction</p>
</a>
<a href="./1/index.html" class="project-link">
<h2>Project 1</h2>
<p>Colorizing the Prokudin-Gorsky Photo Collection</p>
</a>
<a href="./2/index.html" class="project-link">
<h2>Project 2</h2>
<p>Fun with Filters and Frequencies</p>
</a>
<a href="./5A/index.html" class="project-link">
<h2>Project 5A</h2>
<p>Diffusion Models</p>
</a>
<a href="./5B/index.html" class="project-link">
<h2>Project 5B</h2>
<p>Training Diffusion Models</p>
</a>
</div>
</body>
</html>