HTML table markup tutorial (15): table title

HTML table markup tutorial (15): table title
<br />This tag can be used to directly add a table title and control the arrangement properties of the title text.
Basic syntax
<Caption>…</Caption>
Syntax
The content between the <Caption> tags is the title content, this tag is used in the <table> tag.
File example: 10-14.htm
The title of the table is set by the <Caption> tag.
01 <!-- ------------------------------ -->
02 <!-- File example: 10-14.htm -->
03 <!-- File Description: Set the title of the table-->
04 <!-- ------------------------------ -->
05 <HTML>
06 <HEAD>
07 <TITLE>Set the table title</TITLE>
08 </HEAD>
09 <BODY>
10 <TABLE BORDER=3 WIDTH=400 HEIGHT=100 Bordercolor=#336699 ALIGN="CENTER">
11 <CAPTION>Mainstream web design software</CAPTION>
12 <TR>
13 <TD>Web Image Software</TD>
14 <TD>Fireworks</TD>
15 </TR>
16 <TR>
17 <TD>Web page creation software</TD>
18 <TD>Dreamweaver</TD>
19 </TR>
20 <TR>
21 <TD>Web animation software</TD>
22 <TD>Flash</TD>
23 </TR>
24 </TABLE>
25 </BODY>
26 </HTML>
File Description <br />Line 11 defines the title text of the table.

<<:  Steps to split and compress CSS with webpack and import it with link

>>:  Some problems you may encounter when installing MySQL

Recommend

Use pictures to realize personalized underline of hyperlinks

Don't be surprised if you see some kind of und...

JavaScript and JQuery Framework Basics Tutorial

Table of contents 1. JS Object DOM –1, Function –...

Solution to the timeout problem when installing docker-compose with PIP

1: Installation command pip install docker-compos...

A brief introduction to MySQL dialect

Putting aside databases, what is dialect in life?...

vue-router hook function implements routing guard

Table of contents Overview Global hook function R...

CSS3 realizes bouncing ball animation

I usually like to visit the special pages or prod...

MySQL grouping queries and aggregate functions

Overview I believe we often encounter such scenar...

Summary of MySQL Architecture Knowledge Points

1. Databases and database instances In the study ...

Detailed explanation of CSS style cascading rules

CSS style rule syntax style is the basic unit of ...

What is ZFS? Reasons to use ZFS and its features

History of ZFS The Z File System (ZFS) was develo...

The whole process of Vue page first load optimization

Table of contents Preface 1. Image Optimization 2...

Notes on configuring multiple proxies using vue projects

In the development process of Vue project, for th...