how can you set an image as hyperlink #computer
Answers
Answered by
3
Answer:
- Select the picture that you want to display as a hyperlink.
- On the Insert tab, click Hyperlink.
- You can also right-click the text or picture and click Hyperlink on the shortcut menu.
- In the Insert Hyperlink box, paste your link in the Address box.
Answered by
4
Answer:
To insert an image as hyperlink follow the steps :-
1.open notepad
2.type the HTML codes:-
<html>
<title >my web page <\title >
<head>
<\head >
To use image as a link in HTML, use the <img> tag as well as the <a> tag with the href attribute. The <img> tag is for using an image in a web page and the <a> tag is for adding a link. Under the image tag src attribute, add the URL of the image. With that, also add the height and width.
<a href=“http:/w3svhools.in”>
<img src=“flower.jpg">
<\a>
<\html>
Similar questions