]."/> ].">

Home  >  Article  >  Web Front-end  >  How to implement image hyperlink in html

How to implement image hyperlink in html

王林
王林Original
2020-11-13 10:29:3326500browse

How to implement image hyperlinks in HTML: You can nest the image element in the a element to make it a link, such as [ee7959cc8dd4be16ef633321c03dac323184f049ad45bf90bca58d6ba92195145db79b134e9f6b82c0b36e0489ee08ed】.

How to implement image hyperlink in html

Purpose:

Set a hyperlink to the entire image file

Idea:

You can turn the image element into a link by nesting it in an a element.

(Learning video recommendation: html video tutorial)

Grammar:

<a  herf="链接地址"  target="目标窗口打开方式"><img  src="图像文件的地址"></a>

Example:

<a href="#"><img src="/images/relaxing-cat.jpg"></a>

Tips:

Use # as the href attribute of the element to convert it into a permalink.

Place an existing image element within the anchor element. When finished, hover your cursor over your image. At this point the cursor should change from a cursor pointer to a hand pointer. This image is now a link.

Related recommendations: html tutorial

The above is the detailed content of How to implement image hyperlink in html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn