Home  >  Article  >  Web Front-end  >  HTML table markup tutorial (1): Making tables_HTML/Xhtml_Web page production

HTML table markup tutorial (1): Making tables_HTML/Xhtml_Web page production

WBOY
WBOYOriginal
2016-05-16 16:44:581850browse

This is a series of tutorials provided by Script House. It mainly explains the application of tables in web pages for beginners, including the most basic knowledge, some skills of tables, etc. I hope you will support Script House.
Tables are the best way to arrange content. In HTML pages, most pages use tables for layout. But in current technology, some people have proposed using DIV CSS to create web pages. The main purpose is to simplify the code of the web page. Now many websites have implemented DIV CSS layout, but it is still very necessary for us to learn how to create tables during the web page creation process. Yes, so I will explain it specifically to you.
In HTML syntax, tables are mainly composed of three tags, table tags, row tags, and cell tags. As shown in the following table:
Table mark
mark Description
table mark … row mark … cell mark
Basic Grammar
01

02
03
04 …
05
06
07
08…
09
10 ……
11
02
03
标记代表表格的开始,标记代表行开始,而 之间的就是单元格的内容。这几个标记之间是从大到小,逐层包含的关系,由最大的表格,到最小的单元格。一个表格可以有多个和
标记,分别代表多行和多个单元格。
文件范例:10-1.htm
通过、、
标记制作一个三行两列的表格。
01
02
03
04
05
06
07 制作表格
08
09
10

主流的网页设计软件


11
12
13
14
15
16
17
18
19
20
21
22
23
24
网页图像软件 Fireworks
网页制作软件 Dreamweaver
网页动画软件 Flash
04…
05
06
07
08… 09 10… 11
Grammar explanation The tag represents the start of the table, the tag represents the start of the row, and the content between and is the cell content. The relationship between these tags is from large to small, layer by layer, from the largest table to the smallest cell. A table can have multiple and tags, representing multiple rows and multiple cells respectively. File example: 10-1.htm Create a table with three rows and two columns through
, , and tags. 01 02 03 04 05 06 07 Create a form08 HEAD>09 10

Mainstream web design software

11
12 13 Web image software14 Fireworks15 16 17 Web page creation software18 Dreamweaver19 20 21 Web animation software22 Flash23 24
25 26 File Description Rows 11 to 24 are a complete table, rows 12 to 15 are the first row of the table, rows 16 to 19 are the second row of the table, and rows 20 to 23 are the table. Line 3 of .
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn