-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Rick and Morty Character Search</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="header">
<header>
<img class="pickle-gif" src="public/pickle-rick.gif" alt="Pickle Rick Gif" />
<h1>Rick and Morty Character Search</h1>
</header>
</div>
<div class="box sidebar">
<aside>
<h2>Filters</h2>
<label for="select">Status</label>
<select class="select" name="status" id="select">
<option value="all" selected>All</option>
<option value="alive">Alive</option>
<option value="dead" >Dead</option>
<option value="unknown">Unknown</option>
</select>
</aside>
</div>
<div class="box content">
<main>
<label for="search">Search for a character:</label>
<input type="text" id="search" name="search" placeholder="name">
<section class="results" id="results">
</section>
<div class="pagination" id="pagination">
<button id="prevBtn" disabled>Previous Page</button>
<button id="nextBtn">Next Page</button>
</div>
</main>
</div>
<div class="footer">
<footer>
<p>© 2023 Rick and Morty</p>
</footer>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>