forked from yashrajbharti/seasonal-quest-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Season Quest</title>
<link rel="stylesheet" href="./style.css">
<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script>
</head>
<body>
<div class="radio-inputs">
<label class="tasks" color="#721E30" for="tasks" name="tasks"><span>Catching Tasks</span></label>
<input type="radio" name="tasks" id="tasks">
<label class="tasks" color="#9C4A21" for="tasks2" name="tasks"><span>Throwing Tasks</span></label>
<input type="radio" name="tasks" id="tasks2">
<label class="tasks" color="#2E5B42" for="tasks3" name="tasks"><span>Battling Tasks</span></label>
<input type="radio" name="tasks" id="tasks3">
<label class="tasks" color="#0F2C43" for="tasks4" name="tasks"><span>Buddy/Friendship
Tasks</span></label>
<input type="radio" name="tasks" id="tasks4">
<label class="tasks" color="#947226" for="tasks5" name="tasks"><span>Item Tasks</span></label>
<input type="radio" name="tasks" id="tasks5">
<label class="tasks" color="#26183F" for="tasks6" name="tasks"><span>Miscellaneous Tasks</span></label>
<input type="radio" name="tasks" id="tasks6">
</div>
<div class="container node-screenshot">
<div class="child">Tasks</div>
<div class="quest">
</div>
</div>
<!-- <div class="button-container"><button role="button" class="button-name">Download</button></div> -->
<script src="./script.js"></script>
<script src="./sortable.js" defer></script>
</body>
</html>