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

Solution to find all child rows for a given parent row in MySQL

Preface Note: The test database version is MySQL ...

Detailed explanation of the principle and usage of MySQL views

This article uses examples to illustrate the prin...

Detailed explanation of the pitfalls of MySQL 8.0

I updated MySQL 8.0 today. The first problem: Nav...

Detailed explanation of commands to view linux files

How to view linux files Command to view file cont...

Detailed installation process of MySQL 8.0 Windows zip package version

The installation process of MySQL 8.0 Windows zip...

Sample code for changing the color of a png image through a CSS3 filter

This method uses the drop-shadow filter in CSS3 t...

Docker uses nextcloud to build a private Baidu cloud disk

Suddenly, I needed to build a private service for...

MySQL 8.0.18 installation and configuration graphic tutorial

Learning objectives: Learn to use Windows system ...

Analysis of the Linux input subsystem framework principle

Input subsystem framework The linux input subsyst...

Analyze the duration of TIME_WAIT from the Linux source code

Table of contents 1. Introduction 2. First, let&#...

Detailed explanation of how to configure static IP in Centos8

After installing centos 8, the following error wi...

Detailed explanation of psql database backup and recovery in docker

1. Postgres database backup in Docker Order: dock...

MySQL 8.0.12 installation configuration method and password change

This article records the installation and configu...

New usage of watch and watchEffect in Vue 3

Table of contents 1. New usage of watch 1.1. Watc...

How to deploy k8s in docker

K8s k8s is a cluster. There are multiple Namespac...