Skip to content

Commit

Permalink
day 29
Browse files Browse the repository at this point in the history
  • Loading branch information
Asabeneh committed Jan 29, 2020
1 parent 51f3b20 commit 3765e51
Show file tree
Hide file tree
Showing 11 changed files with 2,104 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ day9.md
day10.md
01_02_03_days_backup.md
test.md
29_Day
30_Day
test.html
res.js
44 changes: 44 additions & 0 deletions 29_Day/29_day_dom_day_9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<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 27](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master27_Day27_day_dom_day_7.md) | [Day 29>>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/29_Day/29_day_dom_day_9.md)

![Thirty Days Of JavaScript](../images/banners/day_1_28.png)

- [Day 29](#day-29)
- [Exercises](#exercises)
- [Exercise: Level 1](#exercise-level-1)
- [Exercise: Level 2](#exercise-level-2)
- [Exercise: Level 3](#exercise-level-3)

# Day 29

## Exercises

### Exercise: Level 1

1. Create the following animation using (HTML, CSS, JS)

![Slider](./../images/projects/dom_min_project_30DaysOfJavaScript_color_changing_day_9.1.gif)


### Exercise: Level 2

### Exercise: Level 3

🎉 CONGRATULATIONS ! 🎉

[<< Day 28](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master28_Day28_day_dom_day_8.md) | [Day 30>>](https://github.com/Asabeneh/30DaysOfJavaScript/blob/master/30_Day/30_day_dom_day_10.md)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 26 additions & 0 deletions 29_Day/29_day_starters/project_1/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!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">

<link
href="https://fonts.googleapis.com/css?family=Aldrich|Lato:300,400,700|Montserrat:300,400,500|Nunito:300,400,600|Oswald|Raleway+Dots|Raleway:300,400|Roboto:300,400,500&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/ce3e7ed90f.js" crossorigin="anonymous"></script>
<title>30Days Of JavaScript: 29 Project 1</title>

</head>

<body>
<div>

</div>

<script src="./scripts/main.js"></script>

</body>

</html>
2 changes: 2 additions & 0 deletions 29_Day/29_day_starters/project_1/scripts/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
console.log(countries)
alert('Open the console and check if the countries has been loaded')
Loading

0 comments on commit 3765e51

Please sign in to comment.