-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.02 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 lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>World´s countries</title>
<link rel="stylesheet" href="style.css" />
<!-- Compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css"
/>
</head>
<body>
<div id="container">
<div id="country-list">
<h5>Countries (<span id="numberOfCountries"></span>)</h5>
<h6>Total population (<span id="CountriesTotalPopulation"></span>)</h6>
<div id="tabCountries"></div>
</div>
<div id="favorite-list">
<h5>Favorite Countries (<span id="numberFavoriteCountries"></span>)</h5>
<h6>
Favorites Total population (<span id="favCountriesPopulation"></span>)
</h6>
<div id="tabFavorites"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>