Computer Science, asked by chitransh3162, 9 months ago



What is the correct syntax in HTML for creating a link on a webpage
(a) <LINK SRC = "abc.html"> (b) <BODY LINK = "abc.html">
(c) <A SRC = "abc.html">
(d) <A HREF = "abc.html">
TAbichof the follow​

Answers

Answered by sahil2006sheenu
10

Answer:

<A HREF = "abc.html"> is the correct answer

Explanation:

Answered by anjalin
2

(D) <A HREF = "abc.html">

<A HREF = "abc.html"> is the correct syntax for creating a link to webpage.

Explanation:

  • <a> tag refers to hyperlink.
  • It is used to define a link among web pages.
  • <a> has an attribute named as href attribute.
  • The web page which is to be linked is mentioned in href attribute.
  • By default, an unvisited link is visible underlined and blue.
  • For eg., if the "abc.html" is a webpage to be linked then the syntax will be

            <a href="abc.html">

Similar questions