📜  HTML构件块

📅  最后修改于: 2020-11-01 03:55:31             🧑  作者: Mango

HTML的构建块

HTML文档包含以下基本构建块:

  • 标签: HTML标签围绕内容并对其应用含义。它写在<和>括号之间。
  • 属性: HTML中的属性提供有关元素的额外信息,并将其应用在开始标记中。 HTML属性包含两个字段:名称和值。

句法

 content  
  • 元素: HTML元素是HTML文件的单个组件。在HTML文件中,标记内编写的所有内容均称为HTML元素。

例:



  
    The basic building blocks of HTML
 
  
       

The building blocks

This is a paragraph tag

The style is attribute of paragraph tag

The element contains tag, attribute and content

输出:

The building blocks
This is a paragraph tag

The style is attribute of paragraph tag

The element contains tag, attribute and content