-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.12 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index of Project</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
padding: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #007BFF;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Index of Project</h1>
<ul>
<li><a href="./01-Single-Page-HTML-CV/index.html">01-Single-Page-HTML-CV</a></li>
<li><a href="./02-Basic-HTML-Website/index.html">02-Basic-HTML-Website</a></li>
<li><a href="./03-Personal-Portfolio/index.html">03-Personal-Portfolio</a></li>
<li><a href="./04-Changelog-Component/index.html">04-Changelog-Component</a></li>
<!-- Aggiungi altri link alle cartelle qui -->
</ul>
</body>
</html>