-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<title>Find Country</title>
</head>
<body class="font-monospace text-black">
<!-- Header -->
<header class="d-flex flex-column align-items-center justify-content-center text-center py-5">
<div class="d-flex align-items-center">
<img class="icon" src="images/icons/earth.png" alt="Earth" />
<h1 class="fw-bold mx-5">Find Country Details</h1>
<img class="icon" src="images/icons/loupe.png" alt="search" />
</div>
</header>
<!-- Search Form -->
<div data-aos="zoom-in" class="d-flex justify-content-center mt-5">
<div class="search-card card text-center">
<div class="card-body">
<h4 class="card-title mb-4">Enter a Country Name to Find Details</h4>
<input id="inputs" type="text" class="form-control mb-3" placeholder="Country Name" />
<button class="btn btn-danger w-100" onclick="filterCountries()">
Search
</button>
</div>
</div>
</div>
<!-- Country Details Section -->
<div class="container">
<div id="countryDetails" class="row row-cols-1 row-cols-sm-2 row-cols-md-2 row-cols-lg-3 row-cols-xl-4 g-5"></div>
</div>
<!-- Scripts -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<script src="js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>