Computer Science, asked by mrunalisawant7248, 10 months ago

Vikram is creating a website in which he wants to use different images as a link to the web pages can you suggest in the required tag to accomplish the task

Answers

Answered by jubinv04
14

Answer:

use the <img> tag as well as the <a> tag

Explanation: <img> tag is for using an image in a web page & <a> tag is for adding a link.  an example to make it clear

<body>

 <a href="url of the website you want to visit">

<img src="path of image which you want to display"  alt="any keyword"  width="set any width" height="set any height">

</a>

</body>

Answered by krenu452
11

Answer:

Explanation:

By using <img> tag for inserting image, <video> tag for inserting video clips and for links, we can use <a> tag.

Thank you

Please mark as brainliest

Similar questions