-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (99 loc) · 2.16 KB
/
index.html
File metadata and controls
115 lines (99 loc) · 2.16 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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>
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Segoe UI', sans-serif;
display: flex;
flex-direction: column;
background: white;
color: #1a1a1a;
}
header {
background: #243e7c;
color: white;
padding: 30px 20px 10px;
text-align: center;
}
header h1 {
font-size: 2.2em;
margin: 0;
}
header p {
font-size: 1em;
margin-top: 10px;
}
main {
flex: 1;
max-width: 800px;
width: 100%;
margin: 0 auto;
padding: 40px 20px;
}
section {
margin-bottom: 60px;
}
section h2 {
font-size: 1.5em;
color: #1a1a1a;
}
section p {
margin: 10px 0;
color: #444;
}
a {
color: #243e7c;
text-decoration: underline;
}
footer {
background: #f1f1f1;
padding: 15px;
text-align: center;
font-size: 0.9rem;
color: #555;
}
</style>
</head>
<body>
<header>
<h1>CS180: Introduction to Computer Vision</h1>
<p>Melody's Portfolio</p>
</header>
<main>
<section>
<h2>Project 1: Prokudin-Gorskii Image Reconstruction</h2>
<p>(describe)</p>
<a href="1/index.html">View Project 1</a>
</section>
<section>
<h2>Project 2: Fun with Filters and Frequencies</h2>
<p>(describe)</p>
<a href="2/index.html">View Project 2</a>
</section>
<section>
<h2>Project 3: (Auto)Stitching Photo Mosaics</h2>
<p>(describe)</p>
<a href="3/index.html">View Project 3</a>
</section>
<section>
<h2>Project 4: Neural Radiance Field (NeRF)</h2>
<p>(describe)</p>
<a href="4/index.html">View Project 4</a>
</section>
<section>
<h2>Project 5: Fun with Diffusion Models</h2>
<p>(describe)</p>
<a href="5/index.html">View Project 5</a>
</section>
</main>
<footer>
© 2026 Melody Law | CS180 Portfolio
</footer>
</body>
</html>