-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (64 loc) · 2.55 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
<!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>All the World's Countries</title>
<!--INSERT FAVICON-->
<link rel="shortcut icon" type="image/jpg" href="./assets/favicon.png">
<!--LINKS TO CSS-->
<link rel="stylesheet" href="./css/styling.css">
<link rel="stylesheet" href="./css/responsive.css">
<!--LINK TO FONTAWESOME KIT-->
<script src="https://kit.fontawesome.com/5f2ab24bd1.js" crossorigin="anonymous"></script>
<!--LINK(S) TO GOOGLEFONTS-->
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Mukta+Mahee&display=swap" rel="stylesheet">
<!--LINK TO ANIMATE.CSS-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<body>
<div class="site-header">
<div class="site-header-logo-container">
<i class="fas fa-globe"></i>
<header>All the World's Countries</header>
</div>
<div id="theme-toggler">
<i class="fas fa-sun" id="sun"></i>
<label id="switch" title="Toggle Light/Dark Themes">
<input type="checkbox" id="dark-mode-toggle">
<span class="slider round"></span>
</label>
<i class="fas fa-moon" id="moon"></i>
</div>
</div>
<main id="homepage-container">
<div id="loading-message-container">
<div class="container">
<div class="dash uno"></div>
<div class="dash dos"></div>
<div class="dash tres"></div>
<div class="dash cuatro"></div>
</div>
<header class="animate__animated animate__pulse">Please wait a second while we retrieve the data...</header>
</div>
<div id="homepage-functions-container">
<div id="search-container"></div>
<div id="filter-container"></div>
</div>
<button id="scroll-to-top-btn" title="Scroll to Top"><i class="fas fa-chevron-up"></i></button>
<div id="all-countries-container"></div>
</main>
<script src="./js/main.js"></script>
<script src="./js/toggleDarkMode.js"></script>
<script src="./js/searchFunctionality.js"></script>
<script src="./js/filter.js"></script>
<script>
if (!!window.performance && window.performance.navigation.type === 2) {
window.location.reload();
}
</script>
</body>
</html>