-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
36 lines (35 loc) · 986 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
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<title>Countrypedia</title>
</head>
<body>
<div class="row container">
<div class="input-field col s6">
<h5 class="center-align">
<i class="small material-icons">flag</i>Select A Country
</h5>
<input
placeholder="e.g Nigeria"
id="search"
type="text"
class="validate"
/>
</div>
</div>
<div id="countryList"></div>
<script src="script.js"></script>
</body>
</html>