-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
81 lines (81 loc) · 3.4 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
75
76
77
78
79
80
81
<!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>Breaking Bad | All About Breaking Bad Series. By Mohamed Aridah</title>
<!-- Shared CSS File Styles -->
<link rel="stylesheet" href="css/common.css">
<!-- Page Custom CSS File -->
<link rel="stylesheet" href="css/home.css">
<!-- Quotes CSS File Styles -->
<link rel="stylesheet" href="./css/quotes.css">
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon_io/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon_io/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="192x192" href="./images/favicon_io/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="./images/favicon_io/android-chrome-512x512.png">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon_io/apple-touch-icon.png">
</head>
<body>
<!-- Loading Div -->
<div class="loader">
<div class="spinner"></div>
</div>
<!-- Main Content -->
<main class="main-wrapper">
<div class="page-title">
<h2>all about Breaking bad series..!</h2>
</div>
<!-- Some Series Charcters -->
<section class="characters short-preview"></section>
<!-- Some Series Episodes -->
<section class="episodes short-preview"></section>
<!-- Some Series Dead Characters -->
<section class="dead-characters short-preview"></section>
<!-- Some Series Quotes -->
<section class="quotes short-preview"></section>
</main>
<div class="website-visits">you had <span class="visits-num"></span> visitors</div>
<!-- Ionicons Icons -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<!-- Main Js File -->
<script src="js/app.js"></script>
<script async src="https://api.countapi.xyz/hit/breakingbad/breakingbadgithub?callback=websiteVisits"></script>
<script>
charactersData(
fetchMethod = `${characters}${characterLimit}`,
backButton = false,
// wrapper = document.querySelector('.characters-data'),
wrapper = document.querySelector('.characters'),
hozSlider = true
)
episodesData(
fetchMethod = `${episodes}`,
backButton = false,
randomEpisode = false,
specificSeries = "",
wrapper= document.querySelector('.episodes'),
hozSlider= true
)
deadCharactersData(
fetchMethod = `${deaths}`,
backButton = false,
wrapper = document.querySelector('.dead-characters'),
hozSlider = true
)
quotesData(
fetchMethod = `${quotes}`,
wrapper = document.querySelector('.quotes'),
hozSlider = true
);
// Know How Many People Visited The Project
function websiteVisits(response) {
document.querySelector(".visits-num").innerText = response.value;
}
</script>
</body>
</html>