-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (57 loc) · 2.61 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<script src="./js/script.js" type="module" defer></script>
<link rel="stylesheet" href="style.css">
<title>Anitoons</title>
</head>
<body>
<header class="px-3 py-4 text-center">
<a href="https://anishvermaishere.github.io/anitoons/index.html" class="mx-auto">
<img src="./images/logo.png" alt="anitoons" class="brand-logo">
</a>
</header>
<main class="px-3 position-relative">
<section class="section">
<a href="./pages/anitoons.html" class="fs-3 text-left text-white my-4">Popular Cartoons</a>
<article class="position-relative">
<button class="prev-btn" title="btn">
<img src="./images/left.png" alt="prev" />
</button>
<button class="next-btn" title="btn">
<img src="./images/right.png" alt="next" />
</button>
<div class="d-flex gap-4 slider-container" id="cartoon-slider">
</div>
</article>
</section>
<section class="section">
<a href="./pages/anitoons.html" class="fs-3 text-left text-white my-4">Popular Animes</a>
<article class="position-relative">
<button class="prev-btn" title="btn">
<img src="./images/left.png" alt="prev" />
</button>
<button class="next-btn" title="btn">
<img src="./images/right.png" alt="next" />
</button>
<div class="d-flex gap-4 slider-container" id="anime-slider">
</div >
</article>
</section>
</main>
<footer class="px-3 py-4">
<div class="text-center text-white">
<img src="./images/logo.png" alt="anitoons" width="150">
<p class="fs-6 mt-2" id="copyright">Copyright | Designed by Anish</p>
</div>
</footer>
</body>
</html>