-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
104 lines (98 loc) · 3.52 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="/favicon.ico" />
<!-- Standard -->
<title>Ken Bigler's Website</title>
<meta
name="description"
itemprop="description"
property="og:description"
content="This is a site about Kenneth Bigler, Software Engineer at Intuit, including his work, interests, and resume"
/>
<meta
name="keywords"
content="Ken, Kenneth, Bigler, Kenneth Bigler, Ken Bigler, Resume, HTML, CSS, JavaScript, C++, C, Software Developer, Web, Web Developer, Web Technologist, Santa Clara, SCU, scu, Santa Clara University, Software Engineer, Engineering, Software Engineering, Software Development"
/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<meta name="author" content="Kenneth Bigler" />
<meta name="theme-color" content="#009688"/>
<!-- Social -->
<meta
itemprop="name"
name="twitter:title"
property="og:title"
content="Ken Bigler's Website"
/>
<meta
itemprop="image"
name="twitter:image"
property="og:image"
content="../src/images/ken.webp"
/>
<meta name="twitter:card" property="og:site_name" content="resume" />
<meta name="twitter:site" content="@KennethBigler" />
<meta
name="twitter:description"
content="Resume website for Ken Bigler, Software Engineer at Intuit"
/>
<meta name="twitter:creator" content="@KennethBigler" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.kennethbigler.com/" />
<!-- Styles and external JS -->
<link
type="text/css"
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat&display=swap"
/>
<link rel="manifest" href="/manifest.json" />
<!-- Apple -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Ken's Site">
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link
rel="apple-touch-startup-image"
href="/apple-touch-icon.png"
/>
<!-- preconnect -->
<link rel="preconnect" href="https://www.google.com">
<link rel="preconnect" href="https://stats.g.doubleclick.net">
<link rel="preconnect" href="https://www.google-analytics.com">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-54229318-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-54229318-1");
</script>
<!-- ___ ___ _____
/ // / __/ /_ /
/ // /___ ____ ____ ___/_ __//__
/ _/ __ \/ __ \/ __ \/ _ \/ / __ \
/ /\ \ ___/ / / / / / / ___/ / / / /
/__/ \__\___/_/ /_/_/ /_/\___/_/__/ /__/
______
/ __ \ __ __
/ /_/ //_/_____/ /__ ______
/ ___ </ / __ / / _ \/ ___/
/ /__/ / / /_/ / / ___/ /
/________/_/\__ /_/\___/__/
/____/ -->
</head>
<body>
<noscript> You need to enable JavaScript to run this app. </noscript>
<div id="root"></div>
<script type="module" src="src/main.tsx"></script>
</body>
</html>