HTML Tutorial: Collection of commonly used HTML tags (5)

HTML Tutorial: Collection of commonly used HTML tags (5)

Related articles: Beginners learn some HTML tags (4)
These introduced HTML tags do not necessarily fully conform to the XHTML specification. You should make some choices when making actual layout, for example: the B tag and the FONT tag are not in compliance with the XHTML specification.
81------------------------------------------------------------------------------
<TBODY
ALIGN=CENTER | LEFT | RIGHT
BGCOLOR=color
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE | BOTTOM | CENTER | TOP
event = script
>
Description: Define a table body. The closing tag is optional.

82--------------------------------------------------------------------------
<TD
ALIGN=CENTER | LEFT | RIGHT
BACKGROUND=url
BGCOLOR=color
BORDERCOLOR=color
BORDERCOLORDARK=color
BORDERCOLORLIGHT=color
CLASS=classname
COLSPAN=n
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
NOWRAP
ROWSPAN=n
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE | BOTTOM | CENTER | TOP
event = script
>
Description: Defines a cell (in a row) of a table. The closing tag is required.
83--------------------------------------------------------------------------------
<TEXTAREA
ACCESSKEY=key
ALIGN=ABSBOTTOM | ABSMIDDLE | BASELINE | BOTTOM | LEFT | MIDDLE |
RIGHT | TEXTTOP | TOP
CLASS=classname
COLS=n
DATAFLD=colname
DATASRC=#ID
DISABLED
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
NAME=name
READONLY
ROWS=n
STYLE=css1-properties
TABINDEX=n
TITLE=text
WRAP=OFF | PHYSICAL | VIRTUAL
event = script
>
Description: Multi-line text input control. The closing tag is required.
84--------------------------------------------------------------------------------
<TFOOT
ALIGN=CENTER | LEFT | RIGHT
BGCOLOR=color
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE | BOTTOM | CENTER | TOP
event = script
>
Description: Defines the footer of a table. The closing tag is optional.
85--------------------------------------------------------------------------------
<TH
ALIGN=CENTER | LEFT | RIGHT
BACKGROUND=url
BGCOLOR=color
BORDERCOLOR=color
BORDERCOLORDARK=color
BORDERCOLORLIGHT=color
CLASS=classname
COLSPAN=n
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
NOWRAP
ROWSPAN=n
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE | BOTTOM | CENTER | TOP
event = script
>
Description: Defines the title of a row or column in a table, with the text displayed in bold. The closing tag is optional.
86--------------------------------------------------------------------------------
<THEAD
ALIGN=CENTER | LEFT | RIGHT
BGCOLOR=color
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE | BOTTOM | CENTER | TOP
event = script
>
Description: Defines the table header. The closing tag is optional.
87--------------------------------------------------------------------------------
<TITLE
ID=value
TITLE=string
>
Description: Description document title. The closing tag is required.
88--------------------------------------------------------------------------------
<TR
ALIGN=CENTER | LEFT | RIGHT
BGCOLOR=color
BORDERCOLOR=color
BORDERCOLORDARK=color
BORDERCOLORLIGHT=color
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE | BOTTOM | CENTER | TOP
event = script
>
Description: Defines a row in a table. The closing tag is required.
89--------------------------------------------------------------------------------
<TT
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Display text in a fixed-width font. The closing tag is required.

90--------------------------------------------------------------------------------
<U
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Displays underlined text. The closing tag is required.
Previous Page 1 2 Next Page Read Full Article

<<:  CSS warped shadow implementation code

>>:  Implementation of importing and exporting docker images

Recommend

Common tags in XHTML

What are XHTML tags? XHTML tag elements are the b...

How to set a dotted border in html

Use CSS styles and HTML tag elements In order to ...

Vue implements countdown function

This article example shares the specific code of ...

Implementation of interactive data between QT and javascript

1. Data flows from QT to JS 1. QT calls the JS fu...

An enhanced screenshot and sharing tool for Linux: ScreenCloud

ScreenCloud is a great little app you didn’t even...

A brief analysis of the responsiveness principle and differences of Vue2.0/3.0

Preface Since vue3.0 was officially launched, man...

Detailed explanation of jQuery chain calls

Table of contents Chain calls A small case Chain ...

MySQL foreign key setting method example

1. Foreign key setting method 1. In MySQL, in ord...

How to use selenium+testng to realize web automation in docker

Preface After a long time of reading various mate...

Javascript to achieve drumming effect

This article shares the specific code of Javascri...

How to use Vuex's auxiliary functions

Table of contents mapState mapGetters mapMutation...

My CSS framework - base.css (reset browser default style)

Copy code The code is as follows: @charset "...

Detailed explanation of MYSQL database table structure optimization method

This article uses an example to illustrate the me...

Web designers should optimize web pages from three aspects

<br />With the increase of bandwidth, there ...