-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
84 lines (82 loc) · 3.77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Added pure.css-->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css"
integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/base-min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/grids-responsive-min.css">
<link rel="stylesheet" href="style.css">
<title>MarvelCards</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Anton">
</head>
<body>
<div class="container">
<div class="pure-g-r">
<div class="pure-u-1 pure-u-md-1 banner">
<h1 class="banner-head">
Marvel Character Cards<br> <i class="fas fa-mask"></i>
<!-- Added Mask Icon-->
</h1>
</div>
</div>
<div class="pure-g-r">
<div class="pure-u-1 pure-u-md-10-24">
<div id="searchButtons"></div>
<div id="searchBar"></div>
<div id="letterButtons"></div>
<div id="comicButtons"></div>
<div id="heroPics"></div>
</div>
<div class="pure-u-1 pure-u-md-13-24">
<h2 id="cardGallery">Card Gallery:</h2>
<div id="card-gallery"></div>
</div>
</div>
<!--- Modal Code -->
<div class="modal">
<div class="modal-content">
<div id="modalInfo"></div>
<h2 id="cardStyleText">Pick a Card Style</h2>
<form class="pure-form" id="cardStyleForm">
<label for="checkbox-radio-option-one" class="pure-radio">
<input type="radio" id="checkbox-radio-option-one" name="optionsRadios" value="Galaxy Card" />
Galaxy Card</label>
<label for="checkbox-radio-option-two" class="pure-radio">
<input type="radio" id="checkbox-radio-option-two" name="optionsRadios" value="Wood Card" />
Wood Card</label>
<label for="checkbox-radio-option-three" class="pure-radio">
<input type="radio" id="checkbox-radio-option-three" name="optionsRadios"
value="Jelly Bean Card" />
Jelly Bean Card</label>
</form>
<div id="modal-btn-div">
<button id="music-button">Pause Music</button>
<button class="modal-btn" id="save-card">Make A Card</button>
<button class="modal-btn" id="back-button">Go Back</button>
</div>
<div id="deezer">
<iframe id="player" scrolling="no" frameborder="0" allowTransparency="true" src="" width="400"
height="10" allow="autoplay"></iframe>
</div>
</div>
</div> <!-- end l-content -->
<!--- / Modal Code -->
<div id="space"></div>
</div>
<!-- footer -->
<div class="footer">
<p>
For Your Pleasure,<strong id="teamName">Team Archspire</strong>
</p>
</div>
<!-- Added Font Awesome-->
<script src="https://kit.fontawesome.com/c6160e1b23.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>