-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (41 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
50 lines (41 loc) · 2.11 KB
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
<!DOCTYPE html>
<html lang="en" style="background-color: #010101">
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Heebo" />
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, viewport-fit=cover" />
<!-- Declare dark scheme so Chrome's Auto Dark Theme doesn't force-dark our already-dark page
(force-dark lifts #010101 element backgrounds to ~#060606 and splits against the canvas). -->
<meta name="color-scheme" content="dark" />
<!-- Mobile experience: color the browser chrome, run app-like, and stop iOS auto-linking phone numbers -->
<!-- (the dark canvas is set via the inline background on <html> above so it paints before the bundled CSS) -->
<meta name="theme-color" content="#010101" />
<meta name="format-detection" content="telephone=no" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Max Felker" />
<title>Max Felker</title>
<meta name="description" content="I help others innovate"/>
<link rel="apple-touch-icon" href="max-steps.jpg" />
<!--<link rel="manifest" href="manifest.json" />-->
<!-- Link Sharing-->
<meta property="og:site_name" content="Max Felker"/>
<meta property="og:title" content="Max Felker" />
<meta property="og:description" content="I help others innovate"/>
<meta property="og:url" content="https://maxfelker.com">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H5TRTT8E6N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-H5TRTT8E6N');
</script>
</body>
</html>