-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (72 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="Description" content="Gerry Chen's personal website - home/landing page">
<link rel="icon"
type="image/png"
href="/img/icon.png">
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-107206610-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-107206610-1');
</script>
<title>Gerry's World</title>
<link rel="canonical" href="http://gerrysworld.com">
<link rel="stylesheet" href="/css/common.css">
</head>
<body>
<header class="header">
<div class="wrapper">
<div class="about">
<h1 id="websiteTitle"><a href="/">Gerry's World</a></h1>
<p id="aboutLine">A glimpse into my life</p>
</div>
</div>
<nav class="main">
<ul class="nav">
<li><a href="/">Home</a></li>
<li><a href="/about">About Me</a></li>
<li><a href="/activities">Activities/Experiences</a></li>
<li><a href="/projects">Projects</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<!-- narrow screen menu -->
<script>
if (window.innerWidth<650) {
var el = document.getElementById("aboutLine")
el.parentNode.removeChild(el);
document.getElementById("websiteTitle").style.paddingBottom="1rem";
var men = document.getElementsByClassName("main");
for (i=0;i<men.length;i++){
men[i].parentNode.removeChild(men[i]);
}
document.write('<nav class="auxMenu"><ul class="nav"><li class="dropdown"><a href="javascript:void(0)">Menu</a><div class="dropdown-content"><a href="/">Home</a><a href="/about">About Me</a><a href="/activities">Activities/Experiences</a><a href="/projects">Projects</a><a href="/blog">Blog</a></div></li></ul></nav>');
}
</script>
</header>
<!-- ********** CONTENT *********** -->
<div class="wrapper">
<div class="content">
<h1 id="home-page">Welcome to Gerry's World</h1>
<p>My name is Gerry Chen and I'm currently studying engineering undergrad at Duke University. This website is meant to be a showcase of some of the projects I enjoy working on in my free time as well as a peek into what makes me me. Check out the above tabs for content!</p>
<img src="/pics/snowman.png" width=80% />
</div>
</div>
<!-- ********** CONTENT *********** -->
<footer class="footer"><div class="wrapper">
<pre>
Gerry Chen
412-956-3047
gerry.chen@duke.edu
Engineering Undergrad at Duke University
Class of 2019
</pre>
</div>
</footer>
</body>
</html>