-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (57 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<!--link rel="icon" type="image/x-icon" href="/assets/homepage/favicon.ico">-->
<!-- Load Anonymous Pro font -->
<link href="https://fonts.googleapis.com/css2?family=Anonymous+Pro&display=swap" rel="stylesheet">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Timothy Liu</title>
<script src="scripts/drag.js"></script>
<script src="scripts/ascii-animation.js"></script>
<script src="scripts/desktop-icon.js"></script>
<style>
.iframe-container {
position: relative;
width: 400px;
height: 200px;
background-color: #EEE1C6;
}
.iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
figure {
margin-left: 0;
margin-right: 0;
}
</style>
</head>
<body>
<div style="margin-top:30px;margin-left:20px">
<div style="font-weight:lighter;font-size:22px;">Timothy Liu</div>
<div style="font-size:14px;max-width:500px;">
<p>Interested in all things EECS and finance.</p>
<p>Working on <a href="https://implied.com" target="_blank">Implied</a>.</p>
<figure>
<div class="iframe-container">
<iframe src="https://implied-3d-logo.tliu.io" scrolling="no" style="width:150px;height:200px;border:0;"></iframe>
</div>
</figure>
</div>
<div style="position:absolute;bottom:30px;font-size:12px;">
<span style="margin-right:5px"><a href="https://github.com/tbliu" target="_blank">GitHub</a></span> •
<span style="margin-left: 5px; margin-right:5px"><a href="https://www.linkedin.com/in/tbliu/" target="_blank">LinkedIn</a></span> •
<span style="margin-left: 5px; margin-right:5px"><a href="https://twitter.com/tbliu" target="_blank">Twitter</a></span> •
<span style="margin-left: 5px;"><a href="/blog">Blog</a></span>
</div>
</div>
</body>
</html>
<!DOCTYPE HTML>