-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (41 loc) · 1.97 KB
/
index.html
File metadata and controls
46 lines (41 loc) · 1.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Live Coding Resume</title>
<style id="style-tag"></style>
<script src="dist/app.js"></script>
<link rel="icon" type="image/png" sizes="32x32" href="/ico/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/ico/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/ico/favicon-16x16.png">
<link rel="shortcut icon" href="/ico/favicon.ico" type="image/x-icon" />
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Live-Coding Resume">
<meta property="og:description" content="JavaScript application creates an interactive, animated portfolio presentation that combines live coding with resume content.">
<meta property="og:image" content="https://i.imgur.com/OMsAokr.png">
<meta property="og:url" content="https://interactive-coding.vercel.app">
<meta property="og:type" content="website">
<!-- Twitter Card Tags (for Twitter) -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@bouldinsteven4">
<meta name="twitter:title" content="Live-Coding Resume">
<meta name="twitter:description" content="JavaScript application creates an interactive, animated portfolio presentation that combines live coding with resume content.">
<meta name="twitter:image" content="https://i.imgur.com/OMsAokr.png">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MYTC5Q7Q4Q"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-MYTC5Q7Q4Q');
</script>
<body spellcheck="false">
<div id="content">
<pre contenteditable id="style-text"></pre>
<pre id="work-text"></pre>
<pre id="iframe-text"></pre>
</div>
<div id="header"></div>
</body>
</html>