Instructions

We have deployed a repo below is the preview

  1. Clicking on each item should open each app
  2. You goal also should be the more or less the same shown below
  3. Link to the app

Screenshot 2022-02-24 at 1.13.40 AM.png

Exercise 01

  1. create a folder in the git repo ‘exercise_01’
  2. Create HTML page called ‘index.html’. create a app.js file and import in HTML
  3. You need to create a colour picket control in you HTML
  4. Upon selecting the colour apply the colour to the entire HTML page
  5. Link to the live app

Snippet to colour picker control:

<div id="input-container">
        <label for="backgroundcolor">Select Background Color:</label>
        <input class="change-cursor" type="color" id="backgroundcolor" name="backgroundcolor"
            onchange="changeBackgroundColor(event)">
    </div>

Implement the changeBackgroundColor Method to change the html page background.

The solution is here in this link, strictly for reference link

Screenshot 2022-02-24 at 1.32.06 AM.png