首页 > 代码库 > 图像标签

图像标签

图像标签用于向网页中添加图片

形式:<img .../>

对图片属性修饰:

src = "http://www.mamicode.com/.."  用于存放图片的路径

alt = ".."  用于添加图片的说明文字

height = ".." 图片的高度

width = ".."  图片的宽度

border = "12" 图片的边框

代码举例:

<html><head><title>无标题文档</title></head><body><img src=http://www.mamicode.com/"file:///D|/Photo/desktop/6ce6d341c1a63ab414b4613a8bad6d58.jpg" alt="this is a picture" height="133" width="222" border = "12" /></body></html>

 

图像标签