-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
46 lines (37 loc) · 1.64 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-121937218-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-121937218-2');
</script>
<!--Stylesheets-->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!--Dependencies-->
<script src="lib/obelisk.min.js" type="text/javascript"></script>
<script src="lib/dat.gui.min.js" type="text/javascript"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<!--Github Buttons-->
<div id="content">
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/imartinezl" data-size="large" data-show-count="true" aria-label="Follow @imartinezl on GitHub">Follow @imartinezl</a>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/imartinezl/isometric-text" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star imartinezl/isometric-text on GitHub">Star</a>
</div>
<!--Canvas-->
<canvas id="canvas-txt"></canvas>
<canvas id="canvas-demo"></canvas>
<!--Script-->
<script src="js/presets.js" type="text/javascript"></script>
<script src="js/drawing.js" type="text/javascript"></script>
<script src="js/controls.js" type="text/javascript"></script>
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>