Computer Applications
What is the correct syntax in HTML for creating a link on a webpage ?
<LINK SRC = "abc.html">
<BODY LINK = "abc.html">
<A SRC = "abc.html">
<A HREF = "abc.html">
HTML Advanced Features
3 Likes
Answer
<A HREF = "abc.html">
Reason — In HTML, the <a>
tag is used to create a hyperlink, or link, on a webpage. The href
attribute is used within the <a>
tag to specify the destination of the link.
Answered By
2 Likes
Related Questions
In order to add border to a table, BORDER attribute is specified in which tag ?
- THEAD
- TABLE
- TBORDER
- none of these
Which of the following is an attribute of
<Table>
tag ?- SRC
- LINK
- CELLPADDING
- BOLD
Choose the correct HTML code to create an email link ?
<A HREF = "xx@yy.com"></A>
<A HREF = "mailto:xx@yy.com"></A>
<MAIL = "xx@yy.com"></MAIL>
<A MAILHREF = "xx@yy.com"></A>
…………… attribute is used with
<A>
tag to specify the URL of link.