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

Detailed explanation of the use of bus in Vue

Vue bus mechanism (bus) In addition to using vuex...

Do you know how to use vue-cropper to crop pictures in vue?

Table of contents 1. Installation: 2. Use: 3. Bui...

SQL left join and right join principle and example analysis

There are two tables, and the records in table A ...

Implementation of MySQL GRANT user authorization

Authorization is to grant certain permissions to ...

A screenshot demo based on canvas in html

Written at the beginning I remember seeing a shar...

VUE introduces the implementation of using G2 charts

Table of contents About G2 Chart use Complete cod...

Detailed explanation of jQuery method attributes

Table of contents 1. Introduction to jQuery 2. jQ...

HTML basic summary recommendation (title)

HTML: Title Heading is defined by tags such as &l...

Alibaba Cloud domain name and IP binding steps and methods

1 Enter the Alibaba Cloud console, find the domai...

A very detailed summary of communication between Vue components

Table of contents Preface 1. Props, $emit one-way...

How to implement the builder pattern in Javascript

Overview The builder pattern is a relatively simp...