Question - 1) Create the appropriate structure for assignment 2 - folder, and link on your main index page. 2) Create "assignment2.html" from your template, and update the comments at the top appropriately. 3) At the top of your page, either add or modify the site banner to include the current time and date. It does NOT have to constantly update like the example in the book, just simply display properly upon page load. 4) Do this by creating a named form with an input text element labeled CURRENT DATE/TIME. Give the input element a name so you can reference it from JavaScript. 5) Create a function called "init()" that loads the current time and date into the above text input, similar to what your book does. Hint: "" 6) Using the DAY from the tim e/date above, let's practice some different math functions and how to access elements with JavaScript code. First, create 4 more input text elements. You can give them the following labels: LOG, SQRT, CUBED, and COSINE. 7) Create a variable called mathVar and set it to the constant value 14. We're going to use this to populate the other fields. Normally we'd allow the user to input this value, but we're not there yet... 8) Inside the function you created to update the CLOCK text, do the same for the 5 new input elements you created. Use the appropriate MATH functions found on page JVS73 to populate the input boxes with the appropriate values. LOG should be the natural logarithm of the value of the variable created in step #7. SQRT is the Square root of the variable. CUBED is the current day to the third power (how will you do this?) COSINE is the cosine of the variable value. 8) Save and submit your assignment appropriately