SEN-103 Programming Multi-Module Applications Lab 6 Practice Assignment Calling REST APIs from HTML using JavaScript Overview In this assignment, you will adapt the demonstration examples to call the OpenMeteo API and display the results. Instructions Download the demonstration HTML files for this week (Week7Demos.zip Download Week7Demos.zip). Unzip. Copy Example4.html to a new file called Lab6.html. Edit the comment at the top to indicate that this is a submission for SEN-103 Lab 6, and to include your nickname as the author. Create a button that says “CMKL Forecast”. Then create a JavaScript function that will call the https://api.open-meteo.com/v1/forecast REST API endpoint to request seven days of daily maximum and minimum temperatures for the area around CMKL. (See Lab 5 instructions for more details.) When the API call returns (if the result is successful), display the result in a table as follows: CMKL 7 Day Forecast Date Max Temp (Celcius) Min Temp (Celcius) 2024-04-08 37.7 28.4 2024-04-09 37.4 27.4 2024-04-10 36.7 26.3 2024-04-11 38.4 26.7 2024-04-12 36.3 28.1 2024-04-13 36.3 28.4 2024-04-14 37.1 28.5 Note that HTML has a set of tags for creating tables: