📅  最后修改于: 2020-12-14 06:15:19             🧑  作者: Mango
HTML代表超文本标记语言。它是一种格式语言,用于定义网页的外观和内容。它使我们可以在网页上组织文本,图形,音频和视频。
关键点:
“超文本”一词是指充当链接的文本。
单词标记是指用于定义文本结构的符号。标记符号告诉浏览器如何显示文本,通常被称为标签。
语言一词是指与任何其他语言相似的语法。
HTML由CERN的Tim Berners-Lee创建。
下表显示了各种版本的HTML:
Version | Year |
---|---|
HTML 1.0 | 1991 |
HTML 2.0 | 1995 |
HTML 3.2 | 1997 |
HTML 4.0 | 1999 |
XHTML | 2000 |
HTML5 | 2012 |
标记是告诉网络浏览器如何在网页上显示文本,音频,图形或视频的命令。
关键点:
标签用一对尖括号指示。
他们开始与一个小于(<)字符和结尾具有大于(>)字符。
标签名称在尖括号之间指定。
大多数标签通常成对出现:开始标签和结束标签。
起始标签只是将标签名称括在尖括号中,而指定结束标签则包括正斜杠(/)。
有些标签是空的,即它们没有结束标签。
标签不区分大小写。
起始标签和结束标签名称必须相同。例如, hello i>无效,因为两者都不同。
如果未为标签指定尖括号(<>),则浏览器会将标签名称视为简单文本。
标签还可以具有向浏览器提供有关标签的其他信息的属性。
下表显示了定义基本网页的基本HTML标记:
Tag | Description |
---|---|
Specifies the document as a web page. | |
Specifies the descriptive information about the web documents. | |
Specifies the title of the web page. | |
Specifies the body of a web document. |
以下代码显示了如何使用基本标签。
Heading goes here…
Title goes here…
Body goes here…
下表显示了用于格式化文本的HTML标签:
Tag | Description |
---|---|
Specifies the text as bold. Eg. this is bold text | |
It is a phrase text. It specifies the emphasized text. Eg. Emphasized text | |
It is a phrase tag. It specifies an important text. Eg. this is strong text | |
The content of italic tag is displayed in italic. Eg. Italic text | |
Specifies the subscripted text. Eg. X1 | |
Defines the superscripted text. Eg. X2 | |
Specifies the inserted text. Eg. The price of pen is now |
|
Specifies the deleted text. Eg. The price of pen is now |
|
Specifies the marked text. Eg. It is raining |
下表描述了常用的表标签:
Tag | Description | |
---|---|---|
Specifies a table. | ||
Specifies a row in the table. | ||
Specifies header cell in the table. | ||
Specifies the data in an cell of the table. | ||
Specifies the table caption. | ||
Specifies a group of columns in a table for formatting. |
下表描述了常用的列表标签:
Tag | Description |
---|---|
Specifies an unordered list. | |
Specifies an ordered list. | |
Specifies a list item. | |
Specifies a description list. | |
Specifies the term in a description list. | |
Specifies description of term in a description list. |
框架帮助我们将浏览器的窗口划分为多个矩形区域。每个区域包含单独的html网页,并且每个页面独立工作。
整个浏览器中的一组框架称为框架集。它告诉浏览器如何将浏览器窗口分为框架和各自必须加载的网页。
下表描述了用于创建框架的各种标签:
Tag | Description |
---|---|
It is replacement of the tag. It doesn’t contain the tags that are normally used in element; instead it contains the element used to add each frame. | |
Specifies the content of different frames in a web page. | |
It is used to set the default target frame in any page that contains links whose contents are displayed in another frame. |
表格用于输入值。这些值被发送到服务器进行处理。表单使用输入元素(例如文本字段,复选框,单选按钮,列表,提交按钮等)将数据输入其中。
下表描述了创建表单时常用的标签:
Tag | Description |
---|---|
It is used to create HTML form. | |
Specifies the input field. | |
Specifies a text area control that allows to enter multi-line text. | |
Specifies the label for an input element. |