For this "exercise" you have to send an email to the instructor containing the following information:
Design a simple HTML page with the following elements.
Try to validate your page here.
Value: 2 points.Write a javascript program that calculates the n-th Fibonacci number. Remember that the sequence of Fibonacci numbers is 1,1,2,3,5,8,13,21,... In general, each number is the sum of the two previous numbers in the sequence.
The program should ask the user (with a prompt) to supply the index n of the number to be calculated. Give two versions of your solution, one which works with a loop and one which works recursively. Which is better?
Value: 2 points.