You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
<!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>World Countries Data</title>
|
|
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" />
|
|
<link rel="stylesheet" href="./css/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<header id="countries">
|
|
<h2>World Countries Data</h2>
|
|
<p class="subtitle"></p>
|
|
<p class="feedback"></p>
|
|
</header>
|
|
<main>
|
|
|
|
<div class="wrapper">
|
|
<div class="graph-buttons">
|
|
<button class="population">Population</button>
|
|
<button class="languages">Languages</button>
|
|
</div>
|
|
<h4 class="graph-title"></h4>
|
|
<div class="graphs">
|
|
<div class="graph-wrapper" id="stat"></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="./data/countries_data.js"></script>
|
|
<script src="./js/main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |