-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 897 Bytes
/
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>OpenIT @Spreadshirt</title>
<style>
#sketchomat {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="tablomat">
</div>
<script type="text/javascript">
window.spreadshirtLoaded = [function(spreadshirt) {
// invoked when the spreadshirt library is loaded
spreadshirt.create("sketchomat", {
target: document.getElementById("tablomat"),
shopId: 592380,
platform: "EU",
cssUrl: "https://spreadshirt.github.io/openit/style.css"
});
}];
</script>
<script type="text/javascript" src="//spreadshirt.github.io/apps/spreadshirt.min.js"></script>
</body>
</html>