-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 834 Bytes
/
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
<html>
<head>
<title>zach valenta</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
.one:hover {
background-color:violet
}
.two:hover {
background-color:tomato
}
a:hover {
background-color:sandybrown
}
</style>
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link href="styles.css" rel="stylesheet"/>
</head>
<body>
<h2><span class='one'>Zach</span> <span class='two'>Valenta</span></h2>
<hr>
<p>📚 <a href="books.html">notes on books</a></p>
<p>📡 <a href="blog.html">blog</a></p>
<p>🗿 <a href="about.html">about</a></p>
</body>
</html>