-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
68 lines (62 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
64
65
66
67
68
<!--
* Purpose: Main HTML File
* Author: Itamar Rosenblum
* Date: 09-02-2021
* Last modified: none
-->
<!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">
<title>CountryAPI</title>
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header section-->
<header>
<h1>CountryAPI 🌍</h1>
</header>
<!-- Main section start here -->
<main>
<!-- Countries section -->
<section class="section-countries">
<!-- Form container -->
<div class="form-container">
<form action="#" method="get" target="_self">
<!-- Search by name -->
<input type="search" autocomplete="off" placeholder="Search By Name" id="input-text">
<button type="submit" id="btn-search" class="btn-search"><ion-icon name="search-outline"></ion-icon></button>
<span>or</span>
<!-- Search all -->
<button type="submit" id="btn-all-cty" class="btn-all">Search All</button>
</form>
</div>
<!-- Countries container -->
<div class="countries-container">
<table>
<thead>
<tr class="tr-head">
<th>Name</th>
<th>Flag</th>
<th>Top level domain</th>
<th>Capital</th>
<th>Currencies</th>
<th>Borders</th>
</tr>
</thead>
<tbody>
<!-- Content is created by JS -->
</tbody>
</table>
</div>
</section>
</main>
<!-- Ionicon CDN -->
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<!-- Main JS -->
<script src="js/script.js"></script>
</body>
</html>