-
Notifications
You must be signed in to change notification settings - Fork 0
/
country_details.html
76 lines (73 loc) · 2.7 KB
/
country_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
<!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" />
<script defer src="/js/country_details.js"></script>
<script defer src="/js/theme-switching.js"></script>
<link rel="stylesheet" href="/style/country_details.css" />
<title>Country Name</title>
</head>
<body>
<header class="heading">
<h1 class="heading__title"><a href="/index.html">Where in the world?</a></h1>
<button class="heading__theme-switch-btn">
<img
src="https://img.icons8.com/fluency-systems-regular/24/ffffff/crescent-moon.png"
/>
<span>Dark Mode</span>
</button>
</header>
<main class="main-content">
<form class="main-content__redirection" action="/index.html">
<img
src="https://img.icons8.com/fluency-systems-regular/20/ffffff/reply-arrow.png"
alt=""
/>
<button
class="main-content__redirection--btn"
type="submit"
id="to-index"
>Back
</button>
</form>
<img
class="main-content__datum-img country-details__datum__img datum-country-flag-img"
src=""
alt="Flag of a country."
width="100%"
/>
<h3
class="main-content__datum--country-title country-details__datum datum-auto-apply"
></h3>
<ul
class="main-content__country-details--geography country-details"
style="list-style-type: none"
>
<li class="country-details__datum datum-auto-apply"><span>Native Name:</span></li>
<li class="country-details__datum datum-auto-apply"><span>Population:</span></li>
<li class="country-details__datum datum-auto-apply"><span>Region:</span></li>
<li class="country-details__datum datum-auto-apply"><span>Sub Region:</span></li>
<li class="country-details__datum datum-auto-apply"><span>Capital:</span></li>
<li><br /></li>
</ul>
<ul
class="main-content__country-details--specs country-details"
style="list-style-type: none"
>
<li class="country-details__datum datum-auto-apply">
<span>Top Level Domain:</span>
</li>
<li class="country-details__datum datum-auto-apply"><span>Currencies:</span></li>
<li class="country-details__datum datum-languages"><span>Languages:</span></li>
<li><br /></li>
</ul>
<article
class="main-content__border-countries country-details__datum datum-border-countries"
>
<h4 class="main-content__border-countries--title">Border Countries:</h4>
</article>
</main>
</body>
</html>