Assignment Task
Question 1
Create a HTML document (using the information below) that is nested and contains a definition list that contains an unordered list (The Ingredients, Header Two) and an ordered list (The Procedure, Header Two) and (Note, Header Two) with a paragraph. Your page should contain (Header One) for Baking Procedures
Question 2
Using the HTML file created in Question 1, design an External Cascading Style Sheet (CSS) with the following styles below:
1. Any 3 lines with comments
2. The Body with the following fonts: Arial, Helvetica and Sans Serif
3. Ordered list with italic and underline
4. Unordered list with italic and underline
5. Unordered list with left margin 20 pixels
6. Header one with italic and underlin
Question 3
Write JavaScript statements or comments to accomplish each of the following the tasks below:
Part A
1. State that a program will calculate the product of three integers.
2. Declare the variables num1, num2, num3 and result.
3. Declare the variabl es num1Val, num2Val and num3Val.
4. Prompt the user to enter the first value, read the value from [2 marks] the user and store it in the variable num1Val.
5. Prompt the user to enter the second value, read the value from the user and store it in the variable num2Val. 6. Prompt the user to enter the third value, read the value from the user and store it in the variable Num3Val.
7. Convert num1Val to an integer, and store the result in the variable num1.
8. Convert num2Val to an integer, and store the result in the variable num2.
9. Convert num3Val to an integer, and store the result in the variable num3.
10. Compute the product of the three integers contained in variables num1, num2 and num3, and assigned the result to the variable result.
11. Write a line of HTML text containing the string “The product is” followed by the value result.
Part B
Using the statements written in Part A write a complete program that calculates and prints the product of three integers.