Question:
(a) Outline the six norms to be considered before designing a Web page.
(b) Write a program such that when a user right-clicks anywhere on a Web page, the following message is shown:
This page is copyrighted and all content is protected
(c) Write a JavaScript program that allows you to convert any number entered into the input fields, txtCelsius or txtFahrenheit, from Celsius to Fahrenheit or Fahrenheit to Celsius. The program must respond when the user keys in a number.
Formulae:
F = C*9/5 + 32
C = (F - 32) * 5/9