-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>country API</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/daisyui@3.7.7/dist/full.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="img/fav.png" type="image/x-icon">
</head>
<body class="w-11/12 mx-auto scroll-smooth bg-white">
<header>
<div class="navbar bg-base-100 py-5 rounded-xl bg-slate-100">
<div class="flex-1">
<aside>
<img class="w-12 mx-2" src="img/10817176_19406483-removebg-preview.png" alt="img">
</aside>
<span class="text-xl hidden lg:block font-semibold capitalize text-blue-400">world country Details</span>
</div>
<div class="flex-none gap-2">
<div class="form-control">
<input type="text" placeholder="Search" class="input input-bordered w-24 lg:w-auto" />
</div>
<div class="dropdown dropdown-end">
<label tabindex="0" class="btn btn-ghost btn-circle avatar">
<div class="w-10 rounded-full">
<img src="img/mijahid.png" />
</div>
</label>
<ul tabindex="0" class="mt-3 z-[1] p-2 shadow menu menu-sm dropdown-content bg-base-100 rounded-box w-52">
<li>
<a class="justify-between">
Profile
<span class="badge">New</span>
</a>
</li>
<li><a>Settings</a></li>
<li><a>Logout</a></li>
</ul>
</div>
</div>
</div>
</header>
<!-- heading text------------------------- -->
<section>
<h2 class="text-2xl lg:text-5xl font-semibold capitalize text-center p-5 text-rose-400">find your destination country Details And Location</h2>
</section>
<section id="display" class="grid lg:grid-cols-3 md:grid-cols-2 items-center justify-center gap-5 p-3">
</section>
<script src="api.js"></script>
</body>
</html>