码迷,mamicode.com
首页 > Web开发 > 详细

【codecademy summary】html+css <img>

时间:2017-02-10 14:35:00      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:ima   sel   desc   orm   his   esc   not   html   ref   

The <img> element lets you add images to a web page. <img>element has required attribute called src, which is similar to the href. The values of src must be the URL of the image. <img> also need a / to self-closing element.

  <img> exmaple like this :

     <img src="https://www.exmaple.com/picture.jepg"/> 

 

Also, the alt attribute is applied specifically to the <img> element as a description.

  why add alt attibute?

  1. If an image fails to load on a web page, a user can ouse over the area originally intended for the image and read a brief description of the image.

  2.Visually impaired users often browse the web with the aid of of screen reading software.When you include alt, the screen reading software can read the images‘s description outloud to the visusally impaired user.

  note: If the image on the web page is ot one that conveys any meaningful information to a user, the alt attribute should not be used.

  <img>+alt exmaple like this:

    <img src="https://www.exmaple.com/picture.jepg" alt ="description"/> 

 

 

  

 

【codecademy summary】html+css <img>

标签:ima   sel   desc   orm   his   esc   not   html   ref   

原文地址:http://www.cnblogs.com/guangluwutu/p/6385840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!