-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 721 Bytes
/
index.html
File metadata and controls
40 lines (37 loc) · 721 Bytes
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
<html>
<head>
<title>Frank's Website</title>
<style>
body
{
font: 24px Arial, sans-serif;
color: rgb(200,200,200)
}
a:link
{
color: rgb(150, 200, 255)
}
a:visited
{
color: rgb(200, 100, 255)
}
a:hover
{
color: rgb(255, 150, 150)
}
a:active
{
color:rgb(255, 255, 100)
}
</style>
</head>
<body style="background-color: rgb(20, 20, 20);">
<h2>Frank Zhang's Website</h2>
<img src="img/alligator.jpg" width= 100><br>
<a = href="https://github.com/fnkzhang">github</a>
<p> games I've worked on: <br>
<a = href="https://clxrffdman.itch.io/avian-shift"> avianshift</a> <br>
<a = href="https://goldmari.itch.io/crapshoot"> pinballgame</a> <br>
</p>
</body>
</html>