-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (60 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/svg+xml" href="assets/icon/favicon.svg" />
<link rel="alternate icon" href="assets/icon/favicon.ico" />
<title>SVG Experiments</title>
<!-- ! meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Diego Inácio" />
<meta
property="og:url"
content="https://diegoinacio.github.io/svg-experiments/"
/>
<meta
name="title"
property="og:title"
content="SVG Experiments | Diego Inácio"
/>
<meta
name="description"
property="og:description"
content="A gallery of experiments with Scalable Vector Graphics (SVG) and interactive visualizations."
/>
<meta
name="image"
property="og:image"
content="assets/img/social-preview.png"
/>
<meta property="og:image:type" content="image/png" />
<!-- /! custom meta tags -->
<link type="text/css" rel="stylesheet" href="assets/css/style.css" />
<!-- * Ko-fi -->
<script
type="text/javascript"
src="https://storage.ko-fi.com/cdn/widget/Widget_2.js"
></script>
<!-- /* Ko-fi -->
<script type="text/javascript" src="assets/js/script.js"></script>
</head>
<body class="index">
<div class="wrapper">
<!-- ! Header -->
<div
class="github-corner index"
href="https://github.com/diegoinacio/svg-experiments/"
></div>
<h1>SVG Experiments</h1>
<hr />
<!-- ! Experiment items -->
<div class="items"></div>
<hr />
<!-- ! Footer -->
<footer id="footer"></footer>
<!-- ! Ko-fi button -->
<div id="kofi-button-container"></div>
</div>
<script type="module" src="assets/js/index.js"></script>
</body>
</html>