Computer Science, asked by GabbarSingh8588, 1 year ago

What is the correct syntex in HTML for creating a link on a webpage? A) B) D0

Answers

Answered by shashankavsthi
0
<a> tag used to create link in HTML

<a href="url">link text</a>.




Hope it will help you.
Answered by asifkuet
0

The Correct Syntax in HTML for Creating a Link on a Webpage:

To insert a link in HTML 5 and its previous version, we usually use the <a> tag with the "href" attribute.

It is usually used to indicate the address of the target page.

For example:

<a href="http://www.google.com">

Of course, you can also make a link to another page on your website simply by writing the file name.

Example:

<a href="page02.html">

Similar questions