-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (71 loc) · 2.87 KB
/
index.html
File metadata and controls
79 lines (71 loc) · 2.87 KB
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
<!DOCTYPE html>
<html lang="en">
<title>MTG Search</title>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!-- <link rel="stylesheet" href="style.css" media="screen and (min-width:900px"> -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://cdn.linearicons.com/free/1.0.0/icon-font.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet" />
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"
></script>
<script src="app.js" defer></script>
</head>
<body>
<!--LEFT SIDE OF SCREEN-->
<div id="left">
<section id="card-container">
<h1 id="card-search">Card Search</h1>
<form>
<input type="text" id="search" placeholder="Search" />
<input type="submit" id="submit" value="Search" />
</form>
<div id="card-image"></div>
<br />
<!--RETURNED DATA-->
<div id="card-info">
<dl>
<dt><h2 id="card-name"></h2></dt>
<dd id="name"></dd>
<dt><h2 id="mana-cost"></h2></dt>
<dd id="mana"></dd>
<dt><h2 id="card-type"></h2></dt>
<dd id="type"></dd>
<dt><h2 id="card-rarity"></h2></dt>
<dd id="rarity"></dd>
<dt><h2 id="card-rules"></h2></dt>
<dd id="card-text"></dd>
<dt><h2 id="card-pt"></h2></dt>
<dd id="power"></dd>
</dl>
</div>
</section>
</div>
<!--RIGHT SIDE OF SCREEN-->
<div id="right">
<h1 id="set">Search By Set</h1>
<h1 class="set-search"></h1>
<div class="right-centered">
<!--CAROUSEL-->
<div class="carousel-container">
<!--PREVIOUS BUTTON-->
<div class="carousel-button previous">
<span class="lnr lnr-chevron-left"></span>
</div>
<!--CAROUSEL IMAGES-->
<div class="carousel-images"></div>
<!--NEXT BUTTON-->
<div class="carousel-button next">
<span class="lnr lnr-chevron-right"></span>
</div>
</div>
</div>
</div>
<div id="bottom"></div>
</body>
</html>