-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.68 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
<!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">
<link rel="stylesheet" href="styles.css">
<title>Rest countries</title>
<meta name="description" content="">
<meta name="keywords" content="">
</head>
<body>
<header>
<div class="flex heading">
<h3>Where in the world</h3>
<p>Dark mode</p>
</div>
</header>
<main>
<section class="home">
<div>
<form>
<div class="flex">
<input type="text" placeholder="Search for a country" id="input-country"/>
</div>
<select id="region" name="region">
<option value="" disabled selected 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>
</form>
<div class="wrapper">
<!--COUNTRIES SHOW HERE WHEN THEY LOAD-->
</div>
<section class="detailed-page">
<!--DETAILS OF EACH COUNTRY WHEN CLICKED GOES HERE-->
</section>
</main>
<script src="main.js"></script>
</body>
</html>