-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 1.66 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>My Projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
font-family: system-ui, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
color: #333;
}
header {
background: #24292e;
color: #fff;
padding: 1rem;
text-align: center;
}
h1 {
margin: 0;
font-size: 1.8rem;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 0.8rem 0;
}
a {
display: block;
padding: 1rem;
background: #fff;
border-radius: 8px;
text-decoration: none;
color: #0366d6;
font-weight: 500;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
transition: transform 0.1s ease, box-shadow 0.1s ease;
}
a:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
footer {
text-align: center;
padding: 2rem;
font-size: 0.9rem;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>My Projects</h1>
</header>
<main>
<p>Select one of my Web projects below (works better on desktop):</p>
<ul>
<li>
<a href="MCTS/"
>Monte carlo tree search visualizer – 3D Unity project</a
>
</li>
</ul>
</main>
<footer>© 2025 My GitHub Projects</footer>
</body>
</html>