*************************HTML Language Introduction (II)***************************
13. List tag:
(1) Unordered list marks: Note: Symbol type: disc-solid dot 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 tag:
<menu>
The title of the list
<li>First list item
<li>The second list item
...
The title of the list
<li>First list item
<li>The second list item
...
</menu>
(3) Ordered list markers: Note: Symbol type: 1-number (default) A-caps English letter a-lowercase I-capsulated 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 marks:
<table align=alignment border=n width=x|x% height=y|y%>
<caption align=left|right|center valign=top|botton>Title</caption>
<tr><th>Table header 1<th>Table header 2...<th>Table header n
<tr><td>Table Item 1<td>Table Item 2...<td>Table Item n
...
<tr><td>Table Item 1<td>Table Item 2...<td>Table Item n
</table>
15. Merge multiple rows and multiple list items: Note: x/y is the number of columns/rows to be merged.
(1) Merge multiple columns: <td colspan=x>table entry</td> <tr colspan=x>table entry</tr> <th colspan=x>table entry</th>
(2) Merge multiple rows: <td rowspan=y>table entry</td> <tr rowspan=y>table entry</tr> <th rowspan=y>table entry</th>
(3) Merge multiple rows and columns: <th colspan=x rowspan=y>table entry</th>
16. Framework:
(1) Frame mark:
<frameset rows=x1 cols=x2 border=n bordercolor=color frameborder=yes|no framespacing=m>
<frame src=file name.htm name=frame name border=n bordercolor=color frameborder=yes|no marginwidth=x1 marginheight=x2 scrolling=yes|no|auto noresize>
...
</frameset>
Note: rows: The number of frames that are horizontally divided. For example: rows=25%,25%,50%
cols: The number of frames split vertically. For example: cols=20%,305,*
border:Border width. bordercolor:Border color. frameborder: with/without border.
framespacing: The blank space between each window.
marginwidth: The frame content and the blanks of left and right borders. marginheight: The blank of frame content and upper and lower borders.
scrolling: Whether to add scroll bars noresize: No change in window size is allowed.
17. Automatically refresh the page:
<meta http-equiv=refresh content=seconds; url=new page>
Note: This mark must be placed in <head>...</head>.