An open API service indexing awesome lists of open source software.

https://github.com/sergeiown/beetrooteducationlesson35

Document Object Model (DOM)
https://github.com/sergeiown/beetrooteducationlesson35

html5 javascript scss

Last synced: 3 months ago
JSON representation

Document Object Model (DOM)

Awesome Lists containing this project

README

        

# BeetRootEducation

**_LMS Beetroot Academy progress_**

### TASKS

1. Create a page that shows a numbered list of songs:
```
var playList = [
{
author: "LED ZEPPELIN",
song: "STAIRWAY TO HEAVEN"
},
{
author: "QUEEN",
song: "BOHEMIAN RHAPSODY"
},
{
author: "LYNYRD SKYNYRD",
song: "FREE BIRD"
},
{
author: "DEEP PURPLE",
song: "SMOKE ON THE WATER"
},
{
author: "JIMI HENDRIX",
song: "ALL ALONG THE WATCHTOWER"
},
{
author: "AC/DC",
song: "BACK IN BLACK"
},
{
author: "QUEEN",
song: "WE WILL ROCK YOU"
},
{
author: "METALLICA",
song: "ENTER SANDMAN"
}
];
```
2. Create an HTML page with the "Open" button and a modal window. The modal window should contain text and a "Close" button. At first the modal window is not displayed. When you click on the "Open" button, the modal window appears, and when you click on the "Close" button, it disappears.

3. Create an HTML page with a traffic light and a button that switches the traffic light to the next color.

![image](https://github.com/sergeiown/BeetRootEducationLesson35/assets/112722061/360251af-ce33-4b8e-b9a0-df50e9d1844f)