-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
47 lines (39 loc) · 1.38 KB
/
about.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
<html>
<head>
<title>about</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style type="text/css">
.container{
display: grid;
grid-template-columns: 50% 50%;
grid-column-gap: 50px;
}
.col1 {
grid-column: 1;
}
.col2 {
grid-column: 2;
}
</style>
<link rel="shortcut icon" type="image/png" href="../favicon.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h2>about</h2>
<hr>
<p>You can email: zjv5002 at Google's email service.</p>
<p>around the web:</a></p>
<ul>
<li><a href="https://github.com/zachvalenta">Github</a></li>
<li><a href="https://stackoverflow.com/users/6813490/zach-valenta">Stack Overflow</a></li>
<li><a href="https://news.ycombinator.com/user?id=zJayv">Hacker News</a></li>
<li><a href="https://en.wikipedia.org/wiki/Special:Contributions/Zjayv">Wikipedia</a></li>
</ul>
<p>in composite:</a></p>
<ul>
<li><a href="https://www.youtube.com/watch?v=Z_fdOPvmBrI">Aly Us - Follow Me</a></li>
<li><a href="https://www.youtube.com/watch?v=1OKQdp6iGUk">Jeanne Moreau - Elevator to the Gallows</a></li>
<li><a href="quotes.html">quotes</a></li>
</ul>
</body>
</html>