HTML 标签:标签是 HTML 元素的开始和结束部分。它们以 < 符号开始并以 > 符号结束。 < 和 > 中写的任何内容都称为标签。
例子:
html
html
This is the content.
html
This is paragraph.
HTML 元素:元素将内容包含在标签之间。它们由某种结构或表达式组成。它通常由开始标签、内容和结束标签组成。
例子:
html
This is the content.
This is the content.
其中, 是起始标签, 是结束标签。
HTML 属性:用于定义 HTML 元素的字符。它始终放置在元素的开始标记中。它通常为元素提供额外的样式(属性)。
例子:
html
This is paragraph.
This is paragraph.
HTML Tags | HTML Elements | HTML Attributes |
---|---|---|
HTML tags are used to hold the HTML element. | HTML element holds the content. | HTML attributes are used to describe the characteristic of an HTML element in detail. |
HTML tag starts with < and ends with > | Whatever written within a HTML tag are HTML elements. | HTML attributes are found only in the starting tag. |
HTML tags are almost like keywords where every single tag has unique meaning. | HTML elements specifies the general content. | HTML attributes specify various additional properties to the existing HTML element. |
什么是标签和属性?
标签和属性是 HTML 的基础。
它们一起工作但执行不同的功能——值得花 2 分钟来区分两者。
什么是 HTML 标签?
标签用于标记 HTML 元素的开始,通常用尖括号括起来。标签的一个例子是:
。
大多数标签必须打开
和关闭
才能函数。什么是 HTML 属性?
属性包含附加信息。属性采用开始标签的形式,附加信息放在里面。
- 一个属性的例子是:
在这种情况下,图像源 (src) 和 alt 文本 (alt) 是 标签的属性。
要记住的黄金法则
- 绝大多数标签必须打开 (
) 和关闭 ( ),元素信息如标题或标签之间的文本。 - 使用多个标签时,标签必须按照它们打开的顺序关闭。例如:
示例:这真的很重要!