img在html中不是双标签元素。img标签是一种单标签,用于定义HTML页面中的图像。img标签有两个必需的属性,分别是src属性和alt属性。
本文操作环境:windows10系统、html 5、thinkpad t480电脑。
在html中,标签是单标签。
标签介绍:
标签定义 HTML 页面中的图像。
标签有两个必需的属性:src 和 alt。
常用属性:
alt text 规定图像的替代文本。
height pixels 规定图像的高度。
src URL 规定显示图像的 URL。
width pixels 规定图像的宽度。
代码示例:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> </head> <body> <img src="smiley-2.gif" alt="Smiley face" width="42" height="42"> </body> </html>
(免费视频教程:html视频教程)
运行结果:
相关推荐:html教程
Atas ialah kandungan terperinci img在html中是不是双标签元素. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!