-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (51 loc) · 2.36 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
<!-- TODO
Bigger radio select area (company images)
Better mobile view - timeline improvements - logos + content + date
-->
<!DOCTYPE html>
<html >
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="David Kong">
<meta name="author" content="David Kong">
<link href="css/timeline.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!--Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65626978-1', 'auto');
ga('send', 'pageview');
</script>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<title>David Kong</title>
</head>
<body>
<div id="header">
<div id="container">
<canvas id="draw"></canvas>
</div>
<h1>Hi, I'm David</h1>
</div>
<!-- squares.js -->
<script src="squares.js" type="text/javascript"></script>
<section id="about">
<h3>I am a software engineer at Square working on our debit card. Previously, I developed products and platforms that help Square sellers build and manage relationships with their buyers.</h3>
<h3>I was born and raised, and still live in the San Francisco Bay Area. Currently rediscovering biking and <a href="https://www.flickr.com/photos/david-kong/" target="_newtab">photography</a>. </h3>
<h3>My resume can be viewed <a href="https://www.dropbox.com/s/5smvdkx6mjw1u8o/davidkong.pdf?dl=0" target="_newtab">here</a>.</h3>
</section>
</body>
<footer>
<div id='social'>
<a href="https://www.linkedin.com/in/davidxkong"><i class="fa fa-linkedin-square"></i></a>
<a href="https://github.com/kongd"><i class="fa fa-github-square"></i></a>
<a href="https://www.twitter.com/davidxkong"><i class="fa fa-twitter-square"></i></a>
<a href="https://www.instagram.com/kongquerer"><i class="fa fa-instagram"></i></a>
<a href="mailto:[email protected]"><i class="fa fa-envelope-square"></i></a>
</div>
</footer>
</html>