-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (97 loc) · 2.66 KB
/
index.html
File metadata and controls
101 lines (97 loc) · 2.66 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">
<title>My CS180 Portfolio</title>
<style>
body {
font-family: "Segoe UI", Arial, sans-serif;
margin: 0;
padding: 0;
background: #f9f9f9;
color: #333;
}
header {
background: #0044cc;
color: white;
text-align: center;
padding: 30px 20px;
}
header h1 {
margin: 0;
font-size: 32px;
}
header p {
margin: 10px 0 0;
font-size: 16px;
}
main {
max-width: 900px;
margin: 40px auto;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
text-align: center;
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-4px);
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.card h2 {
margin: 10px 0;
font-size: 20px;
}
.card a {
display: inline-block;
margin-top: 10px;
padding: 8px 16px;
background: #ecbd00;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background 0.2s;
}
.card a:hover {
background: #002a80;
}
footer {
text-align: center;
padding: 20px;
margin-top: 40px;
font-size: 14px;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>Welcome to My CS180 Portfolio</h1>
<p>A collection of Rachel's projects for CS180/280 Intro to Computer Vision and Computational Photography in Berkeley.</p>
</header>
<main>
<!-- Project 0 -->
<div class="card">
<h2>Project 0</h2>
<p>Becoming Friends with Your Camera</p>
<a href="./0/index.html">View Project</a>
</div>
<!-- Project 1 -->
<div class="card">
<h2>Project 1</h2>
<p>Images of the Russian Empire</p>
<a href="./1/index.html">View Project</a>
</div>
</main>
<footer>
© 2025 Your Name — CS180 Portfolio
</footer>
</body>
</html>