-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spooky Season</title>
<script type="text/javascript" src="src/index.js"></script>
<script type="text/javascript" src="src/element.js"></script>
<script type="text/javascript" src="src/card_element.js"></script>
<script type="text/javascript" src="src/background.js"></script>
<script type="text/javascript" src="src/card.js"></script>
<link href="index.css" rel="stylesheet">
</head>
<body>
<header>
<img class="header_logo" src="images/spooky_season_logo.png" alt="scary logo ooooh waaah oooh dead">
</header>
<main>
<!-- Card Container -->
<div class="card_container_border">
<img class="border" src="https://www.pngkey.com/png/full/821-8210879_filter-scary-holloween-haunted-monster-ghost-dark-erie.png" alt="pumpkin border">
<div class="card_container">
</div>
</div>
<!-- Card Container -->
<!-- Card Element Options -->
<div class='card_options'>
<div class='resize'>
<h3 id='resize'>resize</h3>
<h3 id='increase'>+</h3>
<h3 id='decrease'>-</h3>
</div>
<h3 id='clear'>clear</h3>
<h3 id='load'>load</h3>
<div class="card_list_container"></div>
<div class='save'>
<h3 id='save'>save</h3>
<input id='box' type="text">
</div>
</div>
<!-- Card Element Options -->
<!-- Backgrounds -->
<h3 class="label">BACKGROUNDS</h3>
<div class="item_container" id="backgrounds"></div>
<!-- Elements -->
<h3 class="label">SPOOKY ELEMENTS</h3>
<div class="item_container" id="elements"></div>
</main>
<footer>
</footer>
</body>
</html>