-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Christmas Card</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header class="text-white text-center p-3">
<h1>
<a class="link-light link-offset-2 link-underline-opacity-25 link-underline-opacity-100-hover" href="https://github.com/ooopx/">@ooopx</a>
</h1>
</header>
<main class="text-white ">
<div class="border p-3 m-3">
<h1>Card</h1>
<canvas class="border bg-white" id="cardCanvas"></canvas>
</div>
<div class="border p-3 m-3">
<h1>Stickers</h1>
<div class="stickersGrid">
<details open>
<summary>Trees</summary>
<div class="trees"></div>
</details>
<details open>
<summary>Baubles</summary>
<div class="baubles"></div>
</details>
<details open>
<summary>Misc</summary>
<div class="misc"></div>
</details>
</div>
</div>
</main>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.7.1.slim.min.js"></script>
<script src="https://code.createjs.com/1.0.0/createjs.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js" integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+" crossorigin="anonymous"></script>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>