| label |
Description |
| Basis |
|
| <! Doctype> |
Defines the document type. |
| |
Define an HTML document |
| <title> |
Define a title for a document |
| <body> |
Defining the body of a document |
| |
Defining HTML Headings |
| <p> |
Define a paragraph |
| <br> |
Defines a simple fold line. |
| |
Defines a horizontal line. |
| <!--...--> |
Define a Comment |
| Format |
|
|
|
| <abbr> |
Defines an abbreviation. |
|
|
| <b> |
Defines bold text. |
|
|
| <bdo> |
Defines the direction of the text. |
|
|
| <blockquote> |
Defines a block reference. |
|
|
|
|
| <del> |
Defines the text to be deleted. |
|
|
| <em> |
Defines the accent text. Italic body. |
|
|
| <i> |
defines italic text. |
| <ins> |
Defines the text to be inserted. Underline. |
|
|
| <mark> New |
Defines the text with a token. Yellow highlights. |
| <meter> New |
Define weights and measures. Measures that are used only for the known maximum and minimum values. (similar to the effect of the progress bar, very obvious) |
| <pre> |
Defines the pre-formatted text. Well-written formats (such as spaces and blank lines) do not disappear. |
| <progress> New |
Defines the progress of a task in a run (process). Oh, I was wrong, so this is the progress bar. |
| <q> |
Defines a short reference. Double quotes are automatically added. 7-20 |
| <rp>New |
Defines what is displayed by browsers that do not support ruby elements. |
| <rt>New |
Defines the interpretation or pronunciation of characters (Chinese phonetic symbols or characters). |
| <ruby>New |
Defines a ruby annotation (Chinese phonetic notation or character). |
| <s> |
Defines the text to add strikethrough to. |
| <samp> |
Define a sample of computer code. |
| <small> |
Defines the small text. |
| <strike> |
HTML5 is no longer supported. HTML 4.01 is deprecated. Defines the text to add strikethrough to. |
| <strong> |
The accent text that defines the tone more strongly. |
| <sub> |
Defines the subscript text. |
| <sup> |
Defines the superscript text. |
| <time>New |
Define a date/time |
| <tt> |
HTML5 is no longer supported. Defines the typewriter text. |
| <u> |
Defines the underlined text. |
| <var> |
Defines the variable part of the text. |
| <wbr>New |
Specifies where in the text to fit the line break. |
| Form |
|
| <form> |
Defines an HTML form for user input. |
| <input> |
Define an input control |
| <textarea> |
A text input control that defines multiple lines. |
| <button> |
Defines the button. |
| <select> |
Define a selection list (drop-down list). |
| <optgroup> |
Defines a combination of related options in the selection list. |
| <option> |
Defines the options in the selection list. |
| <label> |
Defines the callout for the INPUT element. |
| <fieldset> |
Defines the bounding rectangle around the elements in the form. |
| <legend> |
Defines the caption of the fieldset element. |
| <datalist>New |
Specifies a list of possible options for the INPUT element. |
| <keygen>New |
Specifies the key pair generator field used for the form. |
| <output>New |
Define the result of a calculation |
| Framework |
|
| <frame> |
HTML5 is no longer supported. A window or frame that defines the frameset. |
| <frameset> |
HTML5 is no longer supported. Defines the frameset. |
| <noframes> |
HTML5 is no longer supported. Defines alternative content for users who do not support frames. |
| <iframe> |
Defines an inline frame. |
| Image |
|
|
Define the image. |
| <map> |
Defines an image map. |
| <area> |
Defines the area inside the image map. |
| <canvas>New |
Draw graphics (compared to tables and other images) with scripts (usually JavaScript). |
| <figcaption>New |
Define a caption for a <figure> element |
| <figure>New |
The figure label is used to group elements. |
| Audio/video |
|
| <audio>New |
Define sounds, such as music or other audio streams. |
| <source>New |
A media resource that defines the medium element (<video> and <audio>). Media |
| <track>New |
Defines an external text track for the media (<video> and <audio>) elements. |
| <video>New |
Define an audio or video |
| Link |
|
| <a> |
Define a link |
| <link> |
Defines the relationship between a document and an external resource. |
| <nav>New |
Define navigation links |
| List |
|
| <ul> |
Define an unordered list |
| <ol> |
Define an ordered list |
| <li> |
Define a list item |
| <dir> |
HTML5 is no longer supported. HTML 4.01 is deprecated. Defines a list of directories. |
| <dl> |
Define a definition list |
| <dt> |
Defines an item in a definition definition list. |
| <dd> |
Defines the description of the item in the definition list. |
| <menu> |
Defines a menu list. |
| <command>New |
Defines a command that a user might invoke (such as a radio button, check box, or button). |
| Form |
|
| <table> |
Define a table |
| <caption> |
Defines the table title. |
| <th> |
Defines the header cells in the table. |
| <tr> |
Defines the rows in the table. |
| <td> |
Define the cells in the table. |
| <thead> |
Defines the header content in a table. |
| <tbody> |
Defines the body content in the table. |
| <tfoot> |
Define the table notes (footnotes) in the table. |
| <col> |
Defines a property value for one or more columns in a table. |
| <colgroup> |
Defines a column group for formatting in a table. |
| Style/Section |
|
| <style> |
Defines the style information for a document. |
| <div> |
Defines a section in a document. |
| <span> |
Defines a section in a document. |
| New |
Define a Document Header section |
| <footer>New |
Define a document at the bottom |
| <section>New |
Defines a region of a document |
| <article>New |
Define an article content |
| <aside>New |
Define what is outside of its content. |
| <details>New |
Defines the supplemental details of a user's visible or hidden needs. |
| <dialog>New |
Define a dialog box or window |
| <summary>New |
Defines a visible caption. Details are displayed when the user clicks on the title. |
| Meta information |
|
| |
Define information about a document |
| <meta> |
Defines meta information about an HTML document. |
| <base> |
Defines the default address or default destination for all links in the page. |
| <basefont> |
HTML5 is no longer supported. HTML 4.01 is deprecated. Defines the default font, color, or size of text in a page. |
| Program |
|
| <script> |
Define client script. |
| <noscript> |
Defines alternative content for users who do not support client-side scripting. |
| <applet> |
HTML5 is no longer supported. HTML 4.01 is deprecated. Defines the embedded applet. |
| <embed>New |
Defines a container that is used to embed external applications or interactive programs (plugins). |
| <object> |
Defines the embedded object. |
| <param> |
Defines the parameters of the object. |