Beginners learn some HTML tags (2)

Beginners learn some HTML tags (2)
Related article: Beginners learn some HTML tags (1)
Beginners can learn HTML by understanding some HTML tags. The introduction can help beginners learn HTML, or it can be used as a reference for friends who have already started!
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.
twenty one----------------------------------------------------------------------
< COL
ALIGN=CENTER|LEFT|RIGHT
CLASS=classname
ID=value
SPAN=n
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE|BOTTOM|MIDDLE|TOP
WIDTH=n
>
Description: Defines the properties of a column in TABLE. No closing tag is required.
twenty two--------------------------------------------------------------------------------
< COLGROUP
ALIGN=CENTER|LEFT|RIGHT
CLASS=classname
ID=value
SPAN=n
STYLE=css1-properties
TITLE=text
VALIGN=BASELINE|BOTTOM|MIDDLE|TOP
WIDTH=n
>
Description: Used to define a column group in a TABLE. No closing tag is required.
twenty three--------------------------------------------------------------------------------
< COMMENT
ID=value
LANG=language
TITLE=text
>
Description: Comment mark, not recommended. It is recommended to use <!---->.

twenty four--------------------------------------------------------------------------------
< DD
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Explains a term in the list, displayed on the right. The closing tag is optional.
25--------------------------------------------------------------------------------
< DEL
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Indicates that text has been removed from the document. The closing tag is required.
26--------------------------------------------------------------------------------
< DFN
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Define a term. The closing tag is required.
27--------------------------------------------------------------------------------
< DIR
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Represents a series of short entries. The text that follows must begin with LI and must not exceed 20 characters.
28--------------------------------------------------------------------------------
< DIV
ALIGN=CENTER|LEFT|RIGHT
CLASS=classname
DATAFLD=colname
DATAFORMATAS=HTML|TEXT
DATASRC=#ID
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Describes elements of different natures in a document, such as chapters, paragraphs, summaries, etc. The closing tag is required.
29--------------------------------------------------------------------------------
< DL
CLASS=classname
COMPACT
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Represents a list. DT and DD are used to define the items in the list. The closing tag is required.
30--------------------------------------------------------------------------------
< DT
CLASS=classname
ID=value
LANG=language
LANGUAGE=JAVASCRIPT|JSCRIPT|VBSCRIPT|VBS
STYLE=css1-properties
TITLE=text
event=script
>
Description: Defines a term in the list, displayed in the left column. The closing tag is optional.
Previous Page 1 2 Next Page Read Full Article

<<:  JavaScript to implement mobile signature function

>>:  Solve the problem that docker installation is completed and reported: bridge-nf-call-iptables is disabled

Recommend

How to use Docker plugin to remotely deploy projects to cloud servers in IDEA

1. Open port 2375 Edit docker.service vim /lib/sy...

How to monitor the running status of docker container shell script

Scenario The company project is deployed in Docke...

A detailed introduction to seata docker high availability deployment

Version 1.4.2 Official Documentation dockerhub st...

Seven ways to implement array deduplication in JS

Table of contents 1. Using Set()+Array.from() 2. ...

How to backup MySQL regularly and upload it to Qiniu

In most application scenarios, we need to back up...

How to install and modify the initial password of mysql5.7.18

For Centos installation of MySQL, please refer to...

Getting Started with Nginx Reverse Proxy

Table of contents Overview The role of reverse pr...

Best Practices Guide for MySQL Partitioned Tables

Preface: Partitioning is a table design pattern. ...

XHTML Basic 1.1, a mobile web markup language recommended by W3C

W3C recently released two standards, namely "...

A brief discussion on the Linux kernel's support for floating-point operations

Currently, most CPUs support floating-point units...

Practical record of Vue3 combined with TypeScript project development

Table of contents Overview 1. Compositon API 1. W...

A brief introduction to MySQL functions

Table of contents 1. Mathematical functions 2. St...

Detailed explanation of various join summaries of SQL

SQL Left Join, Right Join, Inner Join, and Natura...