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

HTML Tutorial: Collection of commonly used 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.
Related articles: Beginners learn some HTML tags (3)
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.

61--------------------------------------------------------------------------
<OBJECT
ACCESSKEY=key
ALIGN=ABSBOTTOM | ABSMIDDLE | BASELINE | BOTTOM | LEFT | MIDDLE |
RIGHT | TEXTTOP | TOP
CLASS=classname
CLASSID=id
CODE=url
CODEBASE=url
CODETYPE=media-type
DATA=url
DATAFLD=colname
DATASRC=#ID
HEIGHT=n
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
NAME=name
STYLE=css1-properties
TABINDEX=n
TITLE=text
TYPE=MIME-type
WIDTH=n
event = script
>
Description: Insert an object into an HTML document. The closing tag is required.
62--------------------------------------------------------------------------
<OL
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
START=n
STYLE=css1-properties
TITLE=text
TYPE=1 | a | A | i | I
event = script
>
Description: Create an ordered list. The closing tag is required.
63--------------------------------------------------------------------------------
<OPTION
CLASS=classname
ID=value
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
SelectED
VALUE=value
event = script
>
Description: Defines a selection item for the Select element. The closing tag is optional.
64--------------------------------------------------------------------------------
<P
ALIGN=CENTER | LEFT | RIGHT
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Indicates a paragraph. The closing tag is required.
65--------------------------------------------------------------------------------
<PARAM
DATAFLD=colname
DATAFORMATAS=HTML |TEXT
DATASRC=#ID
NAME=name
VALUE=value
>
Description: Set parameters for the object. Valid for APPLET, EMBED, and OBJECT.
66--------------------------------------------------------------------------------
<PLAINTEXT
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Note: HTML tags are not processed and the font is displayed in fixed width. Not recommended. It is recommended to use the PRE element instead.
67--------------------------------------------------------------------------------
<PRE
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Display text in a monospaced font, preserving spacing and line breaks. The closing tag is required.
68--------------------------------------------------------------------------------
<Q
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Set paragraph spacing for text (smaller). The closing tag is required.
69--------------------------------------------------------------------------------
<S
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Displays text with strikethrough. The closing tag is required.
70--------------------------------------------------------------------------------
<SAMP
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT | JSCRIPT | VBSCRIPT | VBS
STYLE=css1-properties
TITLE=text
event = script
>
Description: Displays text in a smaller font. The default font is monospaced. The closing tag is required.
Previous Page 1 2 Next Page Read Full Article

<<:  Front-end JavaScript operation principle

>>:  CSS Summary Notes: Examples of Transformations, Transitions, and Animations

Recommend

MySQL Series 4 SQL Syntax

Table of contents Tutorial Series 1. Introduction...

Detailed explanation of the six common constraint types in MySQL

Table of contents Preface 1.notnull 2. unique 3. ...

How to use Portainer to build a visual interface for Docker

Portainer Introduction Portainer is a graphical m...

CocosCreator implements skill cooling effect

CocosCreator realizes skill CD effect There are s...

Install Linux rhel7.3 operating system on virtual machine (specific steps)

Install virtualization software Before installing...

Five guidelines to help you write maintainable CSS code

1. Add a comment block at the beginning of the sty...

Deep understanding of line-height and vertical-align

Several concepts Line box: A box that wraps an in...

How to match the size of text in web design: small text, big experience

With the rise of mobile terminals such as iPad, p...

Problems and solutions for installing Docker on Alibaba Cloud

question When installing Docker using Alibaba Clo...

Example of building a Jenkins service with Docker

Pull the image root@EricZhou-MateBookProX: docker...

Vue achieves the top effect through v-show

html <div class="totop" v-show="...

Vite2.0 Pitfalls

Table of contents Vite project build optimization...

Detailed steps for deploying Tomcat server based on IDEA

Table of contents Introduction Step 1 Step 2: Cre...

A detailed discussion of evaluation strategies in JavaScript

Table of contents A chestnut to cover it Paramete...