-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
71 lines (62 loc) · 3.42 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
<!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>Marvelizer</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation-float.min.css"
integrity="sha256-4ldVyEvC86/kae2IBWw+eJrTiwNEbUUTmN0zkP4luL4=" crossorigin="anonymous">
<!-- foundation-prototype.min.css: Compressed CSS with prototyping classes -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation-prototype.min.css"
integrity="sha256-BiKflOunI0SIxlTOOUCQ0HgwXrRrRwBkIYppEllPIok=" crossorigin="anonymous">
<!-- foundation-rtl.min.css: Compressed CSS with right-to-left reading direction -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation-rtl.min.css"
integrity="sha256-F+9Ns8Z/1ZISonBbojH743hsmF3x3AlQdJEeD8DhQsE=" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<header class="subnav-hero-section">
<h1 class="subnav-hero-headline"><img id="marvelizer-logo" src="assets/images/marvelizerfrontpage.png"
width=“400px” height=“75px”><small style="color: rgb(15, 24, 14);">izer</small></h1>
<div class="input-group input-group-rounded">
<input class="input-group-field" id="search-input" type="search" placeholder="Enter Character Name">
<div class="input-group-button">
<input type="submit" class="button secondary" id="search-button" value="Search">
</div>
</div>
<div id="infobar">
<input type="submit" onclick="location.href=`./favoritesPage.html`" value="Favorite Giphys"
class="button secondary" id="favorites" value="Favorite Giphys">
<input type="submit" class="button secondary" id="lucky-button" value="I'm Feeling Lucky">
</div>
</header>
<!-- Modals -->
<div class="reveal" id="modalBadRequest" data-reveal>
<h2>Character No Name? Hmmm..</h2>
<p class="lead">Sounds like a good idea. But not available yet.</p>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="reveal" id="modalWrongCharacterName" data-reveal>
<h1>No Such a Character</h1>
<p class="lead">Please enter correct character name</p>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="reveal" id="Nothing-Found" data-reveal>
<h1>Nothing Found</h1>
<p class="lead">Please enter correct character name</p>
<button class="close-button" data-close aria-label="Close modal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>