-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.78 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
<!DOCTYPE html>
<title>Tye Wang</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Lato:300,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:200,500" rel="stylesheet">
<link rel=stylesheet type=text/css href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel=stylesheet type=text/css href="css/homepage.css">
<body>
<div class="poster">
<div class="overlay-desc">
<div class='header'>
<div id="typed-strings">
<h1>Hi^1000, I'm Tye</h1>
</div>
<h1><span id="typed"></span></h1>
<h2>Head of Engineering - <a href='https://withotis.com' target='_blank'>Otis</a></h2>
<h2>Founder - <a href='https://www.nombler.com' target='_blank'>Nombler</a></h2>
<h2>Former technical architect - Venmo</h2>
<h2><i class="fa fa-home"></i> Brooklyn, New York</h2>
</div>
<div class='body'>
<p>My background is in web development and fintech, but I am most interested in food and drink.</p>
<p>I'm also obsessed with maps.</p>
</div>
</div>
</div>
<div class='social'>
<a href='https://github.com/tyewang/'><i class="fa fa-github-square fa-3x"></i></a>
<a href='https://www.linkedin.com/in/tyewang/'><i class="fa fa-linkedin-square fa-3x"></i></a>
<a href='https://venmo.com/cash'><img src="img/venmo_logo.png" class="logo"></img></a>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script>
var typed = new Typed('#typed', {
stringsElement: '#typed-strings',
typeSpeed: 70,
onComplete: function() {
document.getElementsByClassName("typed-cursor")[0].style.display = 'none';
}
});
</script>