htmlSingle tags include: "
", "
", "", "", "", "", "", " ", "", "
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
A single tag is composed of one tag.
In HTML, tags are keywords surrounded by angle brackets, usually appearing in pairs such as <div>
and </div>
. Opening and closing tags are also known as opening tags and closing tags.
There are also tags presented separately, such as: <img src="1.jpg" />
, etc.
Generally, tags that appear in pairs have their content in the middle of the two tags. If the label is presented separately, the value is assigned in the label attribute. Such as <h1>title</h1>
and <input type="text" value="button" />
.
What are the single tags in html
##
The above is the detailed content of What are the html single tags?. For more information, please follow other related articles on the PHP Chinese website!