-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.34 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">
<title>Country Search Engine</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<p>A non-commercial portfolio project of Konrad Jakubowski</p>
<h1>Country search engine</h1>
<button id="search">Search a country</button>
<input id="country-name" type="text" />
<section class="container">
<div class="row">
<table class="table">
<thead>
<tr>
<th class="text-center">Country name:</th>
<th class="text-center">Capital:</th>
<th class="text-center">Flag:</th>
<th class="text-center">Population:</th>
</tr>
</thead>
<tbody id="countries-add">
</tbody>
</table>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.0.0.min.js" integrity="sha256-JmvOoLtYsmqlsWxa7mDSLMwa6dZ9rrIdtrrVYRnDRH0=" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>