-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (69 loc) · 1.28 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
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
<!DOCTYPE html>
<html>
<head>
<title>My ChatGPT experiments</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
body {
font-family: 'Lato', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-size:24px;
background-color: #87CEEB;
}
#box {
width: 600px;
padding: 10px 30px 30px 30px;
background-color: #f5f5f5;
border-radius: 5px;
box-shadow: 0 0 10px #222;
}
h1 {
text-align: center;
margin-bottom: 30px;
font-size:36px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 10px;
position: relative;
padding-left: 28px;
}
li::before {
content: "";
position: absolute;
top: 8px;
left: 0;
width: 10px;
height: 10px;
border: solid #333;
border-width: 2px;
transform: rotate(45deg);
}
a {
color: #1a73e8;
text-decoration: none;
}
a:hover {
color: #0052cc;
}
</style>
</head>
<body>
<div id="box">
<h1>My ChatGPT experiments</h1>
<ul>
<li><a href="starfield/">Starfield</a></li>
<li><a href="guess/">Guessing Game</a></li>
<li><a href="adventure/">Text Adventure</a></li>
<li><a href="win95/">Win95-style Webpage</a></li>
</ul>
</div>
</body>
</html>