-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
70 lines (50 loc) · 2.04 KB
/
index.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Countries</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">
</head>
<body>
<main>
<!-----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----->
<!-----The search and filter section----->
<section class="section-1">
<div class="search-bar">
<i class="fa fa-search"></i>
<input type="text" placeholder="Search for a country..." id="input">
</div>
<div class="dropdown">
<div class="div-1" id="drophead">
<p>Filter by Region</p>
<i class="fas fa-chevron-down"></i>
</div>
<div class="div-2" id="con-div">
<p class="continent" >Africa</p>
<p class="continent">America</p>
<p class="continent">Asia</p>
<p class="continent">Europe</p>
<p class="continent">Oceania</p>
</div>
</div>
</section>
<!-----The search and filter----->
<!-----The countries display section----->
<div class="countries" id="countries">
</div>
<!-----countries display section----->
<!---custom scroll-up button-->
<a href="#"><button class="topbtn"><i class="fas fa-chevron-up"></i></button></a>
<!-----country display section----->
</main>
<script src="index.js"></script>
</body>
</html>