添加图片html的链接

时间:2015-11-27 16:17:24

标签: html hyperlink

我已经为我的网站添加了一张图片的页面链接,但它没有加载网站,因为链接进入了目录,因此网页没有出现。我的代码如下:

<a href="www.w3schools.com">
<img src="Images/insta.png" alt="" style="width:7%; height:7%;">
</a>

当我点击图片时,表示文件未找到。

3 个答案:

答案 0 :(得分:0)

如果要链接到外部网站上的页面,则需要提供相关页面的完整URL,其中包括协议。在这种情况下,那将是http://www.w3schools.com/

通过链接到www.w3schools.com,您告诉浏览器相对于您要链接的网页加载该网址,因此,如果此链接位于http://domain.tld/page.html的网页上,请点击该链接会尝试加载http://domain.tld/www.w3schools.com

答案 1 :(得分:0)

为您的网站链接添加http://https://

<a href="http://www.w3schools.com/">
  <img src="Images/insta.png" alt="" style="width:7%; height:7%;">
</a>

答案 2 :(得分:0)

<a href="http://www.w3schools.com" target="_blank">
    <img src="Images/insta.png" alt="" style="width:7%; height:7%;">
</a>

没有http://您的链接将是:youraddress / www.w3schools.com

如果您的图像位于名为Images

的正确文件夹中,请注意