parent
ca2a1c84c7
commit
a66a26b8f5
@ -0,0 +1,37 @@
|
||||
<div align="center">
|
||||
<h1> 30 Days Of JavaScript</h1>
|
||||
<a class="header-badge" target="_blank" href="https://www.linkedin.com/in/asabeneh/">
|
||||
<img src="https://img.shields.io/badge/style--5eba00.svg?label=LinkedIn&logo=linkedin&style=social">
|
||||
</a>
|
||||
<a class="header-badge" target="_blank" href="https://twitter.com/Asabeneh">
|
||||
<img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/asabeneh?style=social">
|
||||
</a>
|
||||
|
||||
<sub>Author:
|
||||
<a href="https://www.linkedin.com/in/asabeneh/" target="_blank">Asabeneh Yetayeh</a><br>
|
||||
<small> January, 2020</small>
|
||||
</sub>
|
||||
|
||||
</div>
|
||||
|
||||
[<< Day 24](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/24_Day/24_day_dom_day_4.md) | [Day 26 >>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/26_Day/26_day_dom_day_6.md)
|
||||
|
||||
![Thirty Days Of JavaScript](../images/banners/day_1_25.png)
|
||||
|
||||
- [Day 24](#day-24)
|
||||
- [Exercises](#exercises)
|
||||
- [Exercise: Level 1](#exercise-level-1)
|
||||
|
||||
# Day 24
|
||||
|
||||
## Exercises
|
||||
|
||||
### Exercise: Level 1
|
||||
|
||||
1. Visualizeba the ten most populated countries and the ten most spoken languages in the world using DOM(HTML, CSS, JS)
|
||||
|
||||
![Bar Graph](./../images/projects/dom_min_project_bar_graph_day_5.1.gif)
|
||||
|
||||
🎉 CONGRATULATIONS ! 🎉
|
||||
|
||||
[<< Day 24](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/24_Day/24_day_dom_day_4.md) | [Day 26 >>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/26_Day/26_day_dom_day_6.md)
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,38 @@
|
||||
<!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>
|
@ -0,0 +1,2 @@
|
||||
console.log(countries)
|
||||
alert('Open the console and check if the countries has been loaded')
|
After Width: | Height: | Size: 1.2 MiB |
Loading…
Reference in new issue