-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
69 lines (67 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<title>Software Developer | Robert Hung</title>
<link
rel="icon"
type="image/png"
href="https://www.gravatar.com/avatar/f8f1c5dd24107627c1d5e8c1052908fe.png?s=196"
sizes="196x196"
/>
<meta name="theme-color" content="#ffffff" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="assets/css/main.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css"/>
</noscript>
</head>
<body class="is-loading">
<div id="wrapper">
<section id="main">
<header>
<span class="avatar"
><img src="https://www.gravatar.com/avatar/f8f1c5dd24107627c1d5e8c1052908fe.jpg?s=256" alt="Robert Hung"/>
</span>
<h1>Robert Hung</h1>
<p>Software Developer</p>
</header>
<footer>
<ul class="icons">
<li>
<a href="https://www.github.com/robhung" class="fa-github">Github</a>
</li>
<li>
<a href="https://www.linkedin.com/in/robhung/" class="fa-linkedin">LinkedIn</a>
</li>
<li>
<a href="https://www.twitter.com/robhung_" class="fa-twitter">Twitter</a>
</li>
</ul>
</footer>
</section>
<footer id="footer">
<ul class="copyright">
<li>© Robert Hung</li>
<li id="footer-year"></li>
</ul>
</footer>
</div>
<script>
document.getElementById(
'footer-year'
).innerHTML = new Date().getFullYear();
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>