*******************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
IMG tag basic analysis In HTML5, the img tag has ...
Preface This article was written by a big shot fr...
The experimental environment is as follows Here y...
Table of contents 1. Page Rendering 2. Switch tag...
Copy code The code is as follows: <!DOCTYPE ht...
<br />Original text: http://andymao.com/andy...
XHTML Headings Overview When we write Word docume...
1. Single machine environment construction# 1.1 D...
Table of contents Start and stop Database related...
Two implementations of Vue drop-down list The fir...
This article example shares the specific code of ...
This article mainly introduces the detailed proce...
Table of contents background LIMIT Optimization O...
Table of contents Problem Analysis Why encapsulat...
Table of contents Import on demand: Global Import...