-
Notifications
You must be signed in to change notification settings - Fork 1
/
details.html
56 lines (48 loc) · 2.05 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Country Details</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="detail.css">
</head>
<body>
<!-----The Header section----->
<header class=" head" >
<div class="header">
<h3>Where in the World?</h3>
<p><i class="far fa-moon"></i>Dark Mode</p>
</div>
</header>
<!-----The Header section----->
<section class="modal-div">
<a href="./index.html" class="back-btn" ><i class="fas fa-arrow-left"></i>Back</a>
<div class="modal">
<img src="" alt="" width="50%" height="300px" id="image">
<div class="details">
<h2 id="h2"></h2>
<div class="points">
<div>
<p ><b>Native Name: </b><span class="native-name"></span></p>
<p ><b>Population: </b><span class="population"></span></p>
<p ><b>Region:</b><span class="region"></span></p>
<p ><b>Sub Region:</b><span class="sub-region"></span></p>
<p ><b>Capital:</b><span class="capital"></span></p>
</div>
<div class="infoe">
<p ><b>Top Level Domain:</b> <span class="top-level-domain"></span></p>
<p ><b>Currencies:</b> <span class="currencies"></span></p>
<p ><b>Languages:</b><span class="languages"></span></p>
</div>
</div>
<div class="border-count">
<p ><b class="borders">Border Countries:</b> <a href="#">France</a> <a href="#">Germany</a></p>
</div>
</div>
</div>
</section>
<script src="details.js"></script>
<!---<script src="index.js"></script>-->
</body>
</html>