-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (40 loc) · 1.73 KB
/
index.html
File metadata and controls
49 lines (40 loc) · 1.73 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countries-Details</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:300,regular,500,600,700,800" rel="stylesheet" />
<link rel="stylesheet" href="CSS/style.css">
<script src="JavaScript/script.js" defer></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" /> -->
</head>
<body>
<header class="header-container">
<div class="header-content">
<h2 class="title"><a href="index.html">Where in The World?</a></h2>
<!-- <p><i class="material-symbols-outlined">dark_mode</i>Dark Mode</p> -->
<p class="theme-changer"><i class="fa-regular fa-moon"></i> Dark Mode</p>
</div>
</header>
<main>
<div class="search-filter-container">
<div class="search-container">
<i class="fa-solid fa-magnifying-glass"></i>
<input type="text" placeholder="Search for a Country">
</div>
<select class="filter-by-region">
<option hidden>Filter by Region</option>
<option value="Africa">Africa</option>
<option value="America">America</option>
<option value="Asia">Asia</option>
<option value="Europe">Europe</option>
<option value="Oceania">Oceania</option>
</select>
</div>
<div class="countries-container">
</div>
</main>
</body>
</html>