Question: Please help with this code all the requirements are in the attached image. Add the requirements into the code provided below. HTML: My Movie Library

Please help with this code all the requirements are in the attached image. Add the requirements into the code provided below.

Please help with this code all the requirements are in the attached

HTML:

My Movie Library











CSS:

h3 {
color: green;
font-family: Arial, Tahoma;
}

#newbox {
background-color: #FFFBCD;
padding: 10px;
}

#newbox * {
margin: 5px;
}

.movie {
background-color: #E1E2FF;
 
}
.movie button {
float: right;
color: red;
}

JavaScript:

window.onload = pageLoad;
 
function pageLoad() {
document.getElementById("ratemovie").onclick = addMovie;
}

function addMovie(){
//this function will execute when the "Add Movie" buttonis clicked, so start here!.....

}

Step by Step Solution

3.40 Rating (153 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To add the specified requirements to your code follow these steps Step 1 Define the Movie Class Add ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!