-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.44 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #f4f4f4; /* Light grey background */
color: #333; /* Dark grey text */
}
h1 {
color: #0056b3; /* Blue color for the heading */
}
a {
color: #0066cc; /* Slightly darker blue for links */
text-decoration: none; /* No underline */
}
a:hover {
text-decoration: underline; /* Underline on hover */
}
.image-description {
color: #666; /* Lighter text for descriptions */
font-style: italic; /* Italicize the description */
}
img {
max-width: 100%;
height: auto;
display: block; /* Ensure images are block level to respect margins */
margin: 10px 0; /* Space above and below images */
}
</style>
</head>
<body>
<h1>Welcome to My CS180 Portfolio!</h1>
<a href="./1/index.html">Project 1</a>
<a href="./2/index.html">Project 2</a>
<a href="./3/index.html">Project 3</a>
<a href="./4/index.html">Project 4</a>
<a href="./5/index.html">Project 5</a>
<a href="https://spark0615.github.io/seonghyun_park.github.io/project-pages/final_project.html">Final Project</a>
<!-- More <img> tags and descriptions can be added here -->
</body>
</html>