Computer Science, asked by Pavqn147, 9 months ago

how can you set an image as hyperlink #computer​

Answers

Answered by solomoncrazy
3

Answer:

  1. Select the picture that you want to display as a hyperlink.
  2. On the Insert tab, click Hyperlink.
  3. You can also right-click the text or picture and click Hyperlink on the shortcut menu.
  4. In the Insert Hyperlink box, paste your link in the Address box.
Answered by Anonymous
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