-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
33 lines (33 loc) · 971 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<title>Country Details</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Country Details</h1>
<div class="controls">
<button id="theme-toggle">
<i id="theme-icon" class="fas fa-sun"></i>
</button>
</div>
</header>
<main id="country-details-container"></main>
<button id="back-button" class="back-button">
<i class="fas fa-arrow-left"></i> Back to Main Page
</button>
<footer>
<div class="footer-content">
<p>© 2024 Country Info App. All rights reserved.</p>
</div>
</footer>
<script src="details.js" type="module"></script>
</body>
</html>