-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (58 loc) · 2.8 KB
/
index.html
File metadata and controls
64 lines (58 loc) · 2.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Remo H. Jansen — TypeScript Expert, Microsoft MVP & Open Source Developer</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Remo H. Jansen is a Microsoft MVP, TypeScript expert, and web development professional with 1.5M+ weekly OSS downloads. Author, speaker, and Ironman triathlete.">
<meta name="author" content="Remo H. Jansen">
<meta name="theme-color" content="#3b0083">
<!-- Favicon -->
<link rel="icon" type="image/png" href="assets/images/favicon.png">
<!-- Open Graph / Facebook -->
<meta property="og:url" content="https://www.remojansen.com">
<meta property="og:type" content="website">
<meta property="og:title" content="Remo H. Jansen — TypeScript Expert, Microsoft MVP & Open Source Developer">
<meta property="og:description" content="Remo H. Jansen is a Former Microsoft MVP, TypeScript expert, and web development professional with 1.5M+ weekly OSS downloads. Author, speaker, and Ironman triathlete.">
<meta property="og:image" content="https://www.remojansen.com/assets/images/thumbnail.png">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:url" content="https://www.remojansen.com">
<meta name="twitter:title" content="Remo H. Jansen — TypeScript Expert, Microsoft MVP & Open Source Developer">
<meta name="twitter:description" content="Remo H. Jansen is a Former Microsoft MVP, TypeScript expert, and web development professional with 1.5M+ weekly OSS downloads. Author, speaker, and Ironman triathlete.">
<meta name="twitter:image" content="https://www.remojansen.com/assets/images/thumbnail.png">
<!-- Canonical URL -->
<link rel="canonical" href="https://www.remojansen.com">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
overflow: hidden;
width: 100%;
height: 100%;
}
#container {
width: 100vw;
height: 100vh;
overflow: hidden;
}
#container:fullscreen {
width: 100%;
height: 100%;
background: black;
}
#container:fullscreen canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="dist/index.global.js"></script>
</body>
</html>