-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.11 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
<!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" />
<title>Static Template</title>
<head>
<script
type="application/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"
></script>
<script type="application/javascript" src="/main.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
</head>
<body>
<header>
<input type="text" id="search-field"></input>
<input type="button" id="search-button" value="Search"></input>
</header>
<div id="app">
<div id="country-list-wrapper">
<!-- Populated by JS -->
</div>
<div id="global-info-panel">
<span id="detailed-info-message">
Click on a country in the list to see detailed info.
</span>
<div id="global-info-panel-content" class="country-details">
<!-- Populated by JS -->
</div>
</div>
</div>
</body>
</html>