Write a program in HTML to create a hyperlink using anchor tag.
Answers
Answered by
2
Answer:
- Use the <a> element to define a link.
- Use the href attribute to define the link address.
- Use the target attribute to define where to open the linked document.
- Use the <img> element (inside <a> ) to use an image as a link.
Answered by
1
Answer:
<a href="http://example.com">anchored text</a>
Similar questions