Multiple choice

HTML (Hyper Text Markup Language) has language elements which permit certain actions other than describing the structure of the web document. Which one of the following actions is NOT supported by pure HTML (without any server or client side scripting) pages?

  1. Embed web objects from different sites into the same page

  2. Refresh the page automatically after a specified interval

  3. Automatically redirect to another page upon download

  4. Display the client time as part of the page

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Pure HTML without JavaScript cannot dynamically display or manipulate client-side data like the current time. HTML can embed objects from other sites (iframe element), auto-refresh (meta http-equiv='refresh'), and auto-redirect (meta refresh), but displaying the client's current time requires client-side scripting like JavaScript.