-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (92 loc) · 3.55 KB
/
index.html
File metadata and controls
99 lines (92 loc) · 3.55 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!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>AniCard: Generate Anime Card</title>
<link rel="icon" type="image/x-icon" href="favicon.png">
<!-- STYLES -->
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/spinners/spinner.css" />
<link rel="stylesheet" href="styles/spinners/cube-spinner.css" />
<link rel="stylesheet" href="styles/popular-style.css" />
<link rel="stylesheet" href="styles/rating-circle/circle-bar.css" />
<link rel="stylesheet" href="styles/spinners/searching-loader.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=Montserrat:wght@900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<span class="search-loader" id="searching"></span>
<div id="loader-fullscreen">
<div class="loading">
<span class="loader" id="loader"></span>
</div>
</div>
<header>
<h1>Anicard</h1>
<div class="search-bar">
<input
id="input-element"
placeholder="Search Anime e.g. One Piece"
type="text"
/><button id="search-btn">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
class="feather feather-search"
>
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</button>
</div>
</header>
<!-- POPULAR ANIME SECTION -->
<section id="popular-anime-section">
<h3>■ Top Animes <i style="font-size: small">by rating</i></h3>
<div class="popular-anime-grid" id="popular-anime-container">
<div class="cube-spinner-container" id="cube-spinner">
<div class="sk-cube-grid" id="cube-spinner">
<div class="sk-cube sk-cube1"></div>
<div class="sk-cube sk-cube2"></div>
<div class="sk-cube sk-cube3"></div>
<div class="sk-cube sk-cube4"></div>
<div class="sk-cube sk-cube5"></div>
<div class="sk-cube sk-cube6"></div>
<div class="sk-cube sk-cube7"></div>
<div class="sk-cube sk-cube8"></div>
<div class="sk-cube sk-cube9"></div>
</div>
</div>
</div>
</section>
<script type="text/javascript">
document.onreadystatechange = function () {
if (
document.readyState == "loaded" ||
document.readyState == "complete"
)
alert(
"NOTE!!!!!! full of bugs \n \n If the website acting crazy you can try to remove adblocker \n or go back to https://anicard.web.app/. \n\n If it load too long please go back to home or check your internet :)"
);
};
</script>
<script src="scripts/get-popular-anime.js"></script>
<script src="scripts/rating-circle/circle-bar.js"></script>
<script src="scripts/search.js"></script>
<script src="scripts/script.js"></script>
</body>
</html>