Computer Applications

Which command should we use to link a page with an HTML page ?

  1. <a link = "page.htm"> </a>
  2. <a href = "page.htm"> page </a>
  3. <a connect = "page.htm"> </a>
  4. <a attach = "page.htm"> </a>

HTML Advanced Features

1 Like

Answer

<a href = "page.htm"> page </a>

Reason — To link a page with an HTML page, its name and location is specified with href attribute of <A> tag.

Answered By

2 Likes


Related Questions