content"; common double tags include html, head, body, body , body, div, p. 2. Single tag refers to a tag that can completely describe a certain function with one tag symbol. The syntax is ""; common single tags include br, hr, img, input, link, and meta."/> content"; common double tags include html, head, body, body , body, div, p. 2. Single tag refers to a tag that can completely describe a certain function with one tag symbol. The syntax is ""; common single tags include br, hr, img, input, link, and meta.">
HomeWeb Front-endFront-end Q&AWhat two types of tags does HTML5 contain?

Two types of tags in HTML5: 1. Double tags refer to tags composed of two tag symbols: start and end. The syntax is "contentname>"; common Double tags include html, head, body, body, body, div, and p. 2. Single tag refers to a tag that can completely describe a certain function with one tag symbol. The syntax is ""; common single tags include br, hr, img, input, link, and meta.

What two types of tags does HTML5 contain?

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

Hypertext Markup Language (foreign language abbreviation: HTML) markup tags are often called HTML tags. HTML tags are the most basic unit in the HTML language. HTML tags are HTML (an application under the Standard Universal Markup Language) The most important component.

HTML tags are keywords surrounded by angle brackets, such as .

According to the composition characteristics of tags, HTML tags are usually divided into two categories, namely "double tags" and "single tags". Their specific introduction is as follows.

1. Double tags

Double tags are also called "body tags", which are composed of two tag symbols: start and end. tags (opening and closing tags are also called opening and closing tags). The basic syntax format of double tags is as follows. ,

<标签名>内容</标签名>

For example, and ,

and in the previous document structure are all double tags.

html5Common double tags

##Tag categoryCommon tagsDouble tags (define HTML document), (define document header), (define document title), ,
, ##

2、单标签

单标签也被称为“空标签”,是指用一个标签符号即可完整的描述某个功能的标签

  • 因为它们是没有内容的 HTML 标签元素,它们是在开始标签中就关闭的元素,不存在成对的情况。

其基本语法格式如下。

<标签名 />

例如,在HTML中还有一种特殊的标签——注释标签,该标签就是一种特殊功能的单标签。如果需要在HTML文档中添加一些便于阅读和理解,但又不需要显示在页面中的注释文字,就需要使用注释标签。注释标签的基本写法。

<!-- 注释语句 -->

需要注意的是,注释内容不会显示在浏览器窗口中,但是作为HTML文档内容的一部分,注释标签可以被下载到用户的计算机上,或者用户查看源代码时也可以看到注释标签。

注:在HTML中,在空标签上使用闭标签是无效的,例如:。这样的情况是无效的HTML。

html单标签有


  • :可插入一个简单的换行符。


    标签是空标签(意味着它没有结束标签,因此这是错误的:
    )。在 XHTML 中,把结束标签放在开始标签中,也就是


  • :定义 HTML 页面中的主题变化(比如话题的转移),并显示为一条水平线。
  • :定义图像映射内部的区域(图像映射指的是带有可点击区域的图像)。

  • :为页面上的所有链接规定默认地址或默认目标。

  • What two types of tags does HTML5 contain?:定义 HTML 页面中的图像。

  • :规定了用户可以在其中输入数据的输入字段。

  • :定义文档与外部资源的关系,最常见的用途是链接样式表。

  • :提供了 HTML 文档的元数据。元数据不会显示在客户端,但是会被浏览器解析。

    META元素通常用于指定网页的描述,关键词,文件的最后修改时间,作者及其他元数据。

    元数据可以被使用浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他 Web 服务调用。

  • :定义文档中所有文本的默认颜色、大小和字体。

  • :允许您为插入 XHTML 文档的对象规定 run-time 设置,也就是说,此标签可为包含它的  或者  标签提供参数。

:规定了  元素内部的每一列的列属性。通过使用 标签,可以向整个列应用样式,而不需要重复为每个单元格或每一行设置样式。
  • :定义 frameset 中的一个特定的窗口(框架)。frameset 中的每个框架都可以设置不同的属性,比如 border、scrolling、noresize 等等。

  • :定义了一个容器,用来嵌入外部应用或者互动程序(插件)。

  • 规定用于表单的密钥对生成器字段。

  • :为媒介元素(比如

  • 【推荐课程:HTML5视频教程web前端

    , ,

    ,

    ,

    ,

    ,

    ,

    ,

    , ,

    The above is the detailed content of What two types of tags does HTML5 contain?. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    html5的div一行可以放两个吗html5的div一行可以放两个吗Apr 25, 2022 pm 05:32 PM

    html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

    html5中列表和表格的区别是什么html5中列表和表格的区别是什么Apr 28, 2022 pm 01:58 PM

    html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

    html5怎么让头和尾固定不动html5怎么让头和尾固定不动Apr 25, 2022 pm 02:30 PM

    固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

    HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

    HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

    html5中不支持的标签有哪些html5中不支持的标签有哪些Mar 17, 2022 pm 05:43 PM

    html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

    html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

    html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

    html5是什么意思html5是什么意思Apr 26, 2021 pm 03:02 PM

    html5是指超文本标记语言(HTML)的第五次重大修改,即第5代HTML。HTML5是Web中核心语言HTML的规范,用户使用任何手段进行网页浏览时看到的内容原本都是HTML格式的,在浏览器中通过一些技术处理将其转换成为了可识别的信息。HTML5由不同的技术构成,其在互联网中得到了非常广泛的应用,提供更多增强网络应用的标准机。

    Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

    3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    MantisBT

    MantisBT

    Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.