-
Notifications
You must be signed in to change notification settings - Fork 2
/
details.html
80 lines (80 loc) · 2.61 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="description"
content="This is a simple project to display countries of the world with the ability to search for the country you want, be side the ability to show countries by continent."
/>
<meta name="author" content="Mohamed Aridah" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 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=Nunito+Sans:wght@300;600;800&display=swap"
rel="stylesheet"
/>
<!-- Fontawesome Library -->
<link
rel="stylesheet"
href="https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css"
/>
<!-- Shared CSS Styles File -->
<link rel="stylesheet" href="./css/common.css" />
<!-- Page Custom CSS File -->
<link rel="stylesheet" href="./css/details.css" />
<title>Details Page</title>
</head>
<body>
<!-- Loader -->
<div class="loader">
<div class="spinner">
<i class="fa-regular fa-circle-notch fa-spin icon"></i>
</div>
</div>
<!-- Scroll Top -->
<button
type="button"
aria-label="Scroll Top Button"
class="button scroll-top flex flex-ai-c flex-jc-c scale-effect"
>
<i class="fa-regular fa-chevron-up icon"></i>
</button>
<!-- Header -->
<header class="header">
<div class="container flex flex-jc-sb flex-ai-c">
<div class="logo">
<a href="index.html">
<h1>Where in the world?</h1>
</a>
</div>
<button
type="button"
aria-label="Theme Switcher Button"
class="theme-toggle flex flex-jc-sb flex-ai-c"
>
<i class="fa-regular fa-moon theme-icon"></i>
<span class="theme-text">Dark Mode</span>
</button>
</div>
</header>
<!-- Back Button -->
<div class="back-button">
<div class="container">
<a href="index.html" class="btn btn-back btn-with-icon">
<i class="fa-regular fa-arrow-left icon"></i>
back
</a>
</div>
</div>
<main class="main">
<div class="container">
<section class="country-details"></section>
</div>
</main>
<script src="./js/common.js"></script>
<script src="./js/details.js"></script>
</body>
</html>