-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.13 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Home</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="main-container">
<header>
<h1>Countries</h1>
<p>Welcome to our page</p>
</header>
<div class="search-container">
<div class="search-box">
<input id="search" type="text" placeholder="type a query.." autocomplete="off">
<i id="search-icon" class="material-icons">search</i>
</div>
<div class="search-suggestions"> </div>
</div>
<footer>
<p>This is a practice website for auto suggestion list</p>
</footer>
</div>
<script src="./main.js" async defer></script>
</body>
</html>