-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (73 loc) · 2.74 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
86
87
88
89
90
<!DOCTYPE HTML>
<html>
<head>
<title>Steven's Website | Home</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<link rel="icon" href="images/browser_icon.png">
<style>
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
@import 'https://fonts.googleapis.com/css?family=Roboto+Mono:100';
html,
p {
font-family: 'Roboto Mono', monospace;
}
.container {
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
display: flex;
}
.text {
font-weight: 100;
font-size: 20px;
color: #000;
}
.dud {
color: #a5a5a5;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
</head>
<body class="is-loading">
<div id="wrapper">
<!-- Main -->
<section id="main">
<header>
<span class="avatar"><img src="images/me.jpg" alt="" /></span>
<h1>Steven Z. Zhang</h1>
<p> <div class="container">
<div class="text"></div>
</div>
<script src="js/index.js"> </script>
</p>
</header>
<footer>
<ul class="icons">
<li><a href="mailto:stevezzhang@gmail.com" target="_blank" class="icon fa-envelope-o"><span class="label">email</span></a></li>
<li><a href="https://www.linkedin.com/in/steven-zifan-zhang/" target="_blank" class="icon fa-linkedin"><span class="label">LinkedIn</span></a></li>
<li><a href="https://github.com/zhast" class="icon fa-github"target="_blank" ><span class="label">Github</span></a></li>
<li><a href="resumes/StevenResumeSoftwareSeptember.pdf" target="_blank" class="icon fa-file"><span class="label">Email</span></a></li>
</ul>
</footer>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="copyright">
<li>© 2023</li>
</ul>
</footer>
<script>
if ('addEventListener' in window) {
window.addEventListener('load', function() { document.body.className = document.body.className.replace(/\bis-loading\b/, ''); });
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? ' is-ie' : '');
}
</script>
</body>
</html>