You should develop a web application for the project.

1.Your web application should have 4 web pages, including home.html, math.html, and aboutyourname.html and aboutyourteammate.html. (For example, john.html and sarah.html). If you don't have any team meat, you should have 3 webpages.

2.You need to use an external CSS, called mystyle.css to design all web pages.

3.You need to have a same layout for all pages, as following

See image: image.

4.You need a javascript file, called myjava.js to solve some math problems, including calculating sum and average of three numbers, finding maximum /minimum of the three numbers, and generating Fibonacci sequence. The following is the layout of math.html

See image: image.

5.You need to use the following tags at least one time in your web pages

< h1>…< /h1> , < h3>… < /h3> , < p>…< /p> , < b> …< /b> , < i>…< /i>
< sup>…< /sup> , < sub>…< /sub>, < u>…< /u> , < a…..> < /a>, < img…..>
< ol>< li>….< /ol> , < ul>< li>…< /ul> , < dl> …< /dl>, < div ….> …< /div>
< table>….< /table>

6.The color of links in the navigation bar should change for different states. The four links states are:

a)a:link - a normal, unvisited link
b)a:visited - a link the user has visited
c)a:hover - a link when the user mouses over it
d)a:active - a link the moment it is clicked

7.The following CSS properties must be used in your external CSS: CSS background, CSS border, CSS margin, CSS height and width, CSS font style and size, CSS font weight and font variant, CSS link, and table border properties. You are supposed to use all types of CSS selectors, including element selector, id selector, and class selector at least one time.

8.You need to the following functions in the myjava.js, including MinFunction(), MaxFunction(), SumFunction(), AvgFunction(), and FibFunction(). In the following, we explain each function in details. These functions should be called when you clicked the bottoms in the math page.

  • MinFunction() : Get First Number, Second Number, Third Number and fourth number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate their minimum using if else statement. Finally, display the result in a windows alert.
  • MaxFunction() : Get First Number, Second Number, Third Number and fourth number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate their maximum using if else statement. Finally display the result in a windows alert.
  • additionFunction() : Get First Number, Second Number, Third Number and fourth number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate their addition using while loop. Finally, display the result in a windows alert
  • subtractionFunction() : Get First Number and Second Number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate First Number- Second Number. Finally, display the result in a windows alert
  • divisionFunction() : Get First Number and Second Number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate First Number / Second Number. Finally, display the result in a windows alert
  • exponentFunction() : Get First Third Number and fourth number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate Third Number ^ fourth number. Finally, display the result in a windows alert
  • AvgFunction() : Get First Number, Second Number, Third Number and fourth number, then check if the numbers are between 1- 100 , otherwise display an alert massage to ask the user to enter numbers between 1 to 100. Then, calculate their sum using do while loop then calculate their average. Finally, display the result in a windows alert
  • factorFunction(): Get the first number then check if the number is between 1- 100 , otherwise display an alert massage to ask the user to enter a number between 1 to 100. Then, calculate its factor using for loop. Finally, display the result in a windows alert
Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.