-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (32 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
31
32
<!DOCTYPE html>
<html>
<head>
<title>Countries</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<link rel="stylesheet" href="/styles/styles.css">
<link rel="icon" href="/images/earth-icon.png">
</head>
<body>
<header class="header">
<div class="container">
<h1 class="header__title">Countries</h1>
</div>
</header>
<div class="actions">
<div class="container">
<p class="dropdown__tag">Search the world:</p>
<div class="dropdown">
<select id="country-list" class="dropdown__list">
<option class="dropdown__option" value="selector">----Select Country----</option>
</select>
</div>
</div>
</div>
<div class="content">
<div id="country-info" class="container"></div>
</div>
</body>
<script src="/scripts/requests.js"></script>
<script src="/scripts/functions.js"></script>
<script src="/scripts/countries.js"></script>
</html>