-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<title>Raymond Chung</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- OG Information -->
<meta property="og:title" content="Raymond Chung">
<meta property="og:url" content="https://rchung95.github.io">
<meta property="og:description" content="Raymond Chung, I build APIs.">
<meta property="og:site_name" content="Raymond Chung">
<!-- Favicon + Apple + Android Touch Icons -->
<link rel="shortcut icon" type="image/png" href="./assets/favicon.png"/>
<link rel="apple-touch-icon" href="./assets/touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="152x152" href="./assets/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="180x180" href="./assets/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="167x167" href="./assets/touch-icon-ipad-retina.png">
<link rel="apple-touch-icon" sizes="192x192" href="./assets/touch-icon-android.png">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Mulish:wght@300;700&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/index.css">
</head>
<body>
<nav>
<span class="icon">☀</span>
<label class="switch">
<input id="switch-slider" type="checkbox" onclick="changeTheme()">
<span class="slider round"></span>
</label>
<span class="icon">☾</span>
</nav>
<section class="flex-container">
<section class="flex-text text-center">
<h1 class="main">Hello 👋! I am <span class="name">Raymond Chung</span>.</h1>
<p class="secondary">Software Developer, Speaker & Educator at <a href="https://shopify.com">Shopify</a> 🚀.</p>
<p class="social-media"><a href="https://github.com/rchung95">GitHub</a> <a href="https://linkedin.com/in/raymondchung95">LinkedIn</a></p>
</section>
</section>
<script type="text/javascript" src="./index.js"></script>
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-83432528-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>