Skip to content

Commit dd05992

Browse files
leyileyi
authored andcommitted
update index.html
1 parent 9a14a9f commit dd05992

1 file changed

Lines changed: 68 additions & 1 deletion

File tree

β€Žindex.htmlβ€Ž

Lines changed: 68 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,68 @@
1-
Hello, world!
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>zlyfunction's Homepage</title>
8+
<style>
9+
body {
10+
font-family: 'Courier New', Courier, monospace;
11+
background-color: #1a1a1a;
12+
color: #c5c8c6;
13+
text-align: center;
14+
padding: 50px;
15+
}
16+
17+
h1 {
18+
color: #81a2be;
19+
font-size: 2.5em;
20+
}
21+
22+
p {
23+
font-size: 1.2em;
24+
line-height: 1.6;
25+
}
26+
27+
a {
28+
color: #b5bd68;
29+
text-decoration: none;
30+
}
31+
32+
a:hover {
33+
text-decoration: underline;
34+
}
35+
36+
.container {
37+
max-width: 800px;
38+
margin: 0 auto;
39+
}
40+
41+
.bio-item {
42+
margin: 10px 0;
43+
}
44+
</style>
45+
</head>
46+
47+
<body>
48+
<div class="container">
49+
<h1>Hey, I'm zlyfunction! πŸ‘‹</h1>
50+
<div class="bio">
51+
<p class="bio-item">Fueling my code with Brown Sugar Boba Tea πŸ§‹</p>
52+
<p class="bio-item">Exploring the elegant beauty of geometry πŸ“</p>
53+
<p class="bio-item">Compiling... yet another CS PhD project πŸ’»</p>
54+
</div>
55+
<hr>
56+
<h2>Side Quests & Cool Stuff</h2>
57+
<p>
58+
Check out my procedural Christmas Tree generator! πŸŽ„<br>
59+
<a href="xmas.html">Generate a random Christmas Tree</a>
60+
</p>
61+
<p>
62+
(Warning: Here be dragons... or rather, Christmas drills? πŸŒ€)<br>
63+
<a href="xmasgm1.html">Behold, the crazy version!</a>
64+
</p>
65+
</div>
66+
</body>
67+
68+
</html>

0 commit comments

Comments
Β (0)