-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 972 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>API Project</title>
<link rel="stylesheet" href="api.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
/>
</head>
<body class="body">
<div class="main">
<h1 style="font-style: italic; color: white; font-size: 2.5rem">
Information About Country
</h1>
<div class="container" style="width: 400px; margin-top: 50px">
<div class="get">
<div class="div">
<input type="text" id="country-inp" placeholder="Country Name..." />
<button id="search-btn" style="border-radius: 8px">Search</button>
</div>
<div class="info"><div class="flag"></div></div>
</div>
</div>
</div>
<script src="api.js"></script>
</body>
</html>