-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.47 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f4;
}
h1 {
color: #2c3e50;
text-align: center;
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
}
.project-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
.project-link {
background-color: #3498db;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.project-link:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<h1>Welcome to My CS180 Portfolio!</h1>
<div class="project-links">
<a href="./1/index.html" class="project-link">Project 1</a>
<a href="./2/index.html" class="project-link">Project 2</a>
<a href="./3/index.html" class="project-link">Project 3</a>
<a href="./4/index.html" class="project-link">Project 4</a>
</div>
</body>
</html>