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 spacing problem between img tags

IMG tag basic analysis In HTML5, the img tag has ...

Detailed explanation of MySQL index principles and optimization

Preface This article was written by a big shot fr...

Implementation method of Nginx+tomcat load balancing cluster

The experimental environment is as follows Here y...

Example of using nested html pages (frameset usage)

Copy code The code is as follows: <!DOCTYPE ht...

HTML Tutorial: Ordered Lists

<br />Original text: http://andymao.com/andy...

Detailed explanation of the use of title tags and paragraph tags in XHTML

XHTML Headings Overview When we write Word docume...

Zookeeper stand-alone environment and cluster environment construction

1. Single machine environment construction# 1.1 D...

Comparison of two implementation methods of Vue drop-down list

Two implementations of Vue drop-down list The fir...

Vue realizes the function of uploading photos on PC

This article example shares the specific code of ...

Detailed explanation of browser negotiation cache process based on nginx

This article mainly introduces the detailed proce...

MySQL optimization tutorial: large paging query

Table of contents background LIMIT Optimization O...

Vue.js manages the encapsulation of background table components

Table of contents Problem Analysis Why encapsulat...

How to implement on-demand import and global import in element-plus

Table of contents Import on demand: Global Import...