-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
60 lines (56 loc) · 1.8 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">
<title>Anime Site</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<link rel="stylesheet" href="styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="./assets/images/favicon.ico">
</head>
<body>
<header>
<div class="header-wrapper">
<a href="index.html">
<div class="logo-container">
<img src="./assets/images/Watermark.png" alt="Logo" class="logo-image" />
<div class="logo">AnimeSite</div>
</div>
</a>
</div>
</header>
<main>
<section class="search-section">
<div class="container">
<h2>Search Anime</h2>
<form id="search-form" action="" method="get">
<div id="search-container">
<input type="search" name="search" placeholder="Search for Anime...">
<button type="submit">Search</button>
</div>
<div class="switch-container">
<div id="toggle-state">Sub</div>
<label class="switch">
<input type="checkbox" id="language-toggle" checked>
<span class="slider round"></span>
</label>
</div>
</form>
<div id="search-results"></div>
<div class="loading-spinner" id="loading-spinner">
<div class="spinner"></div>
</div>
<div id="pagination" class="pagination hidden">
<button id="prev-page">Previous</button>
<button id="next-page">Next</button>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-wrapper">
<p>© Anime Site 2023</p>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>