HTML tutorial, easy to learn HTML language (2)

HTML tutorial, easy to learn HTML language (2)
*******************Introduction to HTML language (Part 2)********************************
13. List Marking:
(1) Unordered list mark: Note: Symbol type: disc - solid circle circle - hollow origin square - solid square
<ul type=symbol type>list title
<li type=symbol type 1>first list item
<li type=symbol type 1>Second list item
...
</ul>
(2) Menu list mark:
<menu>
<lh>Title of the list
<li>First list item
<li>The second list item
...
<lh>Title of the list
<li>First list item
<li>The second list item
...
</menu>
(3) Ordered list mark: Note: Symbol type: 1-number (default) A-uppercase English letter a-lowercase I-uppercase Roman letter i-lowercase
<ol type=symbol type>list title
<li type=symbol type 1>first list item
<li type=symbol type 1>Second list item
...
</ol>
14. Table markup:
<table align=alignment border=n width=x|x% height=y|y%>
<caption align=left|right|center valign=top|botton>Title</caption>
<tr><th>Header 1<th>Header 2...<th>Header n
<tr><td>Table 1<td>Table 2...<td>Table n
...
<tr><td>Table 1<td>Table 2...<td>Table n
</table>
15. Merge multiple rows and table items: Note: x/y is the number of columns/rows to be merged.
(1) Merge multiple columns: <td colspan=x>table item</td> <tr colspan=x>table item</tr> <th colspan=x>table item</th>
(2) Merge multiple rows: <td rowspan=y>table item</td> <tr rowspan=y>table item</tr> <th rowspan=y>table item</th>
(3) Merge multiple rows and columns: <th colspan=x rowspan=y>table item</th>
16. Framework:
(1) Frame mark:
<frameset rows=x1 cols=x2 border=n bordercolor=color frameborder=yes|no framespacing=m>
<frame src="filename.htm" name="frame name" border=n bordercolor=colorframeborder=yes|no marginwidth=x1 marginheight=x2 scrolling=yes|no|auto noresize>
...
</frameset>
Note: rows: the number of frames divided horizontally. For example: rows=25%,25%,50%
cols: The number of frames divided vertically. For example: cols=20%,305,*
border: border width. bordercolor: border color. frameborder: with/without border.
framespacing: The space between windows.
Marginwidth: The space between the frame content and the left and right borders. Marginheight: The space between the frame content and the top and bottom borders.
scrolling: whether to add a scroll bar noresize: do not allow the window size to be changed.
17. Automatically refresh the page:
<meta http-equiv="refresh" content="seconds; url=new page">
Note: This tag must be placed in <head>...</head>.

<<:  Vue/react single page application back without refresh solution

>>:  Implementation of check constraints in MySQL 8.0

Recommend

Specific use of Linux which command

We often want to find a file in Linux, but we don...

An in-depth introduction to React refs

1. What is Refs is called Resilient File System (...

Automatic backup of MySQL database using shell script

Automatic backup of MySQL database using shell sc...

Detailed explanation of MySql installation and login

Check if MySQL is already installed in Linux sudo...

12 types of component communications in Vue2

Table of contents 1. props 2..sync 3.v-model 4.re...

Summary of using MySQL online DDL gh-ost

background: As a DBA, most of the DDL changes of ...

Analysis of the principle of Nginx using Lua module to implement WAF

Table of contents 1. Background of WAF 2. What is...

Drawing fireworks effect of 2021 based on JS with source code download

This work uses the knowledge of front-end develop...

Detailed explanation of the usage and function of MySQL cursor

[Usage and function of mysql cursor] example: The...

Solve the problem of docker's tls (ssl) certificate expiration

Problem phenomenon: [root@localhost ~]# docker im...

Example code for implementing equal height layout in multiple ways with CSS

The equal height layout described in this article...