I have to use this html and create a javascript file to make the buttons GROW, BLUE, FADE and RESET function. I am doing prework for a coding class and am a beginner.
<!DOCTYPE html>
<html>
<head>
<title>Watch That Box</title>
</head>
<body>
<p>Press the buttons to change the box!</p>
<div id="box" style="height:150px; width:150px; background-color:orange; margin:25px"></div>
<button id="button1">Grow</button>
<button id="button2">Blue</button>
<button id="button3">Fade</button>
<button id="button4">Reset</button>
<script type="text/javascript" src="javascript.js"></script>
</body>
</html>