HTML5 <img> 标签
HTML5 <img>
标签用于在网页中插入图像。
基本语法:
<img src="image_URL" alt="image_description" title="image_title" width="pixels" height="pixels">
参数说明:
src
:必需。指定图像的路径。alt
:替代文本,图像不能显示时显示的文本。title
:鼠标悬停时显示的文本。width
和height
:图像的宽度和高度,可以只设置其中之一,另一个会按比例缩放。
示例代码:
<img src="image.jpg" alt="Description of the image" title="Image Title" width="500" height="300">
这段代码将在网页上显示一个宽度为500像素,高度为300像素的图像,图像的路径是image.jpg
。如果图像无法显示,将显示"Description of the image"文本,鼠标悬停时将显示"Image Title"。
评论已关闭