-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
98 lines (97 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-4DHJEMESJD"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(...args) {
window.dataLayer.push(args);
}
gtag('js', new Date());
gtag('config', 'G-4DHJEMESJD');
</script>
<!-- Google tag end -->
<title>Bubblesets - Example</title>
<meta name="author" content="Josua Krause" />
<meta property="og:url" content="https://bubblesets-js.josuakrause.com/" />
<meta
name="title"
property="og:title"
content="Bubblesets for JavaScript"
/>
<meta
name="description"
property="og:description"
content="Interactively explore features of the Bubblesets library."
/>
<meta
property="og:image"
content="https://bubblesets-js.josuakrause.com/favicon-512x512.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:domain" content="bubblesets-js.josuakrause.com" />
<meta
name="twitter:url"
content="https://bubblesets-js.josuakrause.com/"
/>
<meta name="twitter:title" content="Bubblesets for JavaScript" />
<meta
name="twitter:description"
content="Interactively explore features of the Bubblesets library."
/>
<meta
name="twitter:image"
content="https://bubblesets-js.josuakrause.com/favicon-512x512.png"
/>
<link
rel="icon"
type="image/png"
href="favicon-512x512.png"
sizes="512x512"
/>
<link
rel="icon"
type="image/png"
href="favicon-180x180.png"
sizes="180x180"
/>
<link rel="icon" type="image/png" href="favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" href="index.css" />
<script async src="index.js" type="module"></script>
</head>
<body>
<div class="hmain">
<div class="vmain">
<div class="header">
<a href="https://www.npmjs.com/package/bubblesets"
>Bubblesets for JavaScript</a
>
</div>
<div id="topbar" class="topbar"></div>
<div id="main" class="main"></div>
<div id="bottombar" class="bottombar"></div>
<div id="footer" class="footer"></div>
</div>
</div>
<footer>
<div class="footer-style">
© jk 2024
<a href="https://github.com/JosuaKrause/bubblesets-js" target="_blank">
[source]
</a>
</div>
</footer>
</body>
</html>