-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (58 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Where in the world?</title>
<!-- PROJECT-SOURCES -->
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;600;800&display=swap" rel="stylesheet">
<!-- PROJECT-ICONS -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<!-- TAB-ICON -->
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- STYLE-CSS -->
<link rel="stylesheet" href="assets/style/style.css">
<!-- STYLE-CSS-DARK-MODE -->
<link rel="stylesheet" href="assets/style/style-dark-mode.css">
</head>
<body>
<!-- MAIN-HEADER -->
<header class="main-header" id="main-header">
<h1><a href="index.html">Where in the world?</a></h1>
<button id="btn-dark-mode"><span><i class='bx bx-moon'></i></span>dark mode</button>
</div>
</header>
<!-- MAIN-HEADER -->
<main>
<!-- SEARCH -->
<section class="search" id="search">
<div>
<span><i class='bx bx-search-alt-2'></i></span>
<input type="text" placeholder="Search for a country..." id="searchCountries">
</div>
<select id="filter">
<option selected disabled>Filter by Region</option>
<option value="africa">Africa</option>
<option value="americas">America</option>
<option value="asia">Asia</option>
<option value="europe">Europe</option>
<option value="oceania">Oceania</option>
</select>
</section>
<!-- SEARCH -->
<!-- CARDS -->
<section class="cards">
<ul id="cardNations">
</ul>
</section>
</main>
<!-- SCRIPT-MAIN -->
<script src="assets/script/main.js"></script>
<!-- SCRIPT-FILTER -->
<script src="assets/script/filter.js"></script>
<!-- SCRIPT-DARK-MODE -->
<script src="assets/script/dark-mode.js"></script>
</body>
</html>