-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TierList Maker</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
<link rel="stylesheet" href="style.css" />
<script type="module" src="main.js"></script>
<!-- social links for refinedguides.com -->
<script
src="https://refinedguides.com/assets/social.js?linkColor=%23fff&textColor=%23888"
defer
></script>
</head>
<body>
<h1>TierList Maker</h1>
<div
class="tiers container"
data-placeholder="Click on the title to add a new tier."
></div>
<div class="cards container">
<img src="https://placehold.co/100/orange/fff" alt="" draggable="" />
<img src="https://placehold.co/200/dodgerblue/fff" alt="" draggable="" />
<img src="https://placehold.co/150x100/green/fff" alt="" draggable="" />
<img src="https://placehold.co/120x150/red/fff" alt="" draggable="" />
<img src="https://placehold.co/220x190/purple/fff" alt="" draggable="" />
<img src="https://placehold.co/300x120/teal/fff" alt="" draggable="" />
<img src="https://placehold.co/145/pink/fff" alt="" draggable="" />
<img src="https://placehold.co/90/hotpink/fff" alt="" draggable="" />
<img src="https://placehold.co/145/brown/fff" alt="" draggable="" />
<img
src="https://placehold.co/110x165/darkorchid/fff"
alt=""
draggable=""
/>
<img src="https://placehold.co/220/bisque/fff" alt="" draggable="" />
<img
src="https://placehold.co/135x150/lightseagreen/fff"
alt=""
draggable=""
/>
</div>
<dialog class="settings-modal">
<section>
<div class="colors"></div>
<textarea class="tier-label" placeholder="Tier label"></textarea>
<button id="delete">Delete Row</button>
<button id="clear">Clear Row</button>
<button id="prepend">Add a Row Above</button>
<button id="append">Add a Row Below</button>
</section>
</dialog>
</body>
</html>