-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (60 loc) · 3.6 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
72
73
74
<!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>AniFind</title>
<!-- Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="imgs/Icon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="imgs/Icon/favicon-32x32.png">
<link rel="icon" type="imgs/png" sizes="16x16" href="imgs/Icon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Bootstrap CDN-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="styles/styles.css">
<!-- Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa&family=Forum&family=Fragment+Mono&family=Rampart+One&family=Rubik:wght@300&display=swap" rel="stylesheet">
<!-- Bebas Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap" rel="stylesheet">
<!-- Montserrat Font -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap" rel="stylesheet">
<!-- Bootstrap JS CDN-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3" crossorigin="anonymous"></script>
<script defer src="scripts/index.js"></script>
</head>
<body>
<div class="container text-center main">
<div class="row p-2 mt-5 mb-2" id="input-wrapper">
<div class="col-12 mt-5 mb-4 align-self-center">
<p class="display-1 title"><img class="align-items-center mb-2"src="imgs/AniFind-Logo.png" alt="rei" id="rei"> AniFind</p>
</div>
<!-- Search -->
<div class="col-12 mt-5 mb-1 align-self-center">
<input class=" me-4" type="text" placeholder="Enter an Anime" id="input">
<button class="btn" id="search-btn" disabled >
<img src="imgs/search.png" width="30"/>
</button>
</div>
<div class="col-12 align-self-center">
<button class="btn mt-4" id="topAnime-btn">See Top 10 Anime</button>
</div>
</div>
<!-- Main Div(Anime list and pagnation)-->
<div class="row g-1 p-2 mt-5 mb-5 outputField" id="anime-wrapper">
<div id="top-pages"></div>
<div id="btm-pages"></div>
</div>
</div>
<!-- Credit team-->
<div class="text-center credit w-100">
<h3 class="mt-5 mb-5 rank">SEARCH ANIME BASED ON RANK</h3>
<p class="h4 mb-2 git">Front-End JS by <a href="https://github.com/developedbychris" id="subhead"> DevelopedByChris <img id="git" src="imgs/github.svg" height="22.14" width="30" alt=""></a></p>
<p class="h5 mb-5 git">UI Design Developed by <a href="https://github.com/NirajD10" id="subhead"> NirajD10 <img id="git" src="imgs/github.svg" height="22.14" width="30" alt=""></a></p>
</div>
</body>
</html>