1. Use ul to add a news information list
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title> p标签</title> 6 </head> 7 <body> 8 9 10 </body> 11 </html>
When browsing the web, you will find that there are many information lists on the web page, such as news lists , picture list, as shown below.
News list
Picture list
These lists can be created using the ul-li tag Finish. ul-li is a list of information in no order.
Grammar:
<ul> <li>信息</li> <li>信息</li> ...... </ul>
Example:
<ul> <li>精彩少年</li> <li>美丽突然出现</li> <li>触动心灵的旋律</li> </ul>
The default style of ul-li displayed on the web page is generally: each li has a dot in front of it, as shown below Shown:
Let’s try it, enter
li stands for List in English, ol stands for ordered list in English, and ul stands for unordered list in English
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title> p标签</title> 6 </head> 7 <body> 8 9 10 </body> 11 </html>
What should you do if you want to display a sequential information list on a web page? ? For example, the book best-selling ranking list on Dangdang.com is
as shown in the figure below. This kind of information display can use the
Grammar:
<ol> <li>信息</li> <li>信息</li> ...... </ol>
Example:
The following is a popular course download ranking:
<ol> <li>前端开发面试心法 </li> <li>零基础学习html</li> <li>JavaScript全攻略</li> </ol>
Let’s try it, enter
<ol> <li>我的第一个列表信息。</li> <li>我的第一个列表信息。</li> </ol>
on line 8 in the editor. Don’t forget the syntax of the
<ol> <li>信息</li> <li>信息</li> ...... </ol> 三、认识p在排版中的作用
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title>p标签</title> 6 </head> 7 <body> 8 <h2>热门课程排行榜</h2> 9 <ol> 10 <li>前端开发面试心法 </li> 11 <li>零基础学习html</li> 12 <li>javascript全攻略</li> 13 </ol> 14 <h2>最新课程排行</h2> 15 <ol> 16 <li>版本管理工具介绍—Git篇 </li> 17 <li>Canvas绘图详解</li> 18 <li>QQ5.0侧滑菜单</li> 19 </ol> 20 </body> 21 </html>
During the web page creation process , you can divide some independent logical parts and put them in a
tag. This
tag acts like a container.
Grammar:
…
Determine the logical part:
What is the logical part? It is a set of interrelated elements on the page. For example, an independent column section in a web page is a typical logical part.
As shown in the figure below: The part marked with a red border in the figure is a logical part, and the
tag can be used as a container.
Let’s try it: use the p tag to divide the web page into independent sections
Use the p tag in the editor to divide into independent logical parts. (There are many answers, let’s see who is the most concise)
Don’t forget the syntax of the
tag:
…
Reference code : (Just one of them)
<p> <h2>热门课程排行榜</h2> <ol> <li>前端开发面试心法 </li> <li>零基础学习html</li> <li>javascript全攻略</li> </ol> </p> <p> <h2>最新课程排行</h2> <ol> <li>版本管理工具介绍—Git篇 </li> <li>Canvas绘图详解</li> <li>QQ5.0侧滑菜单</li> </ol> </p> 一个html页面可以看成一个家,而一个p你们可以看成家的每个小房间,房间有了当然没什么效果, 但是一个家必须分成一个个小房间才能多姿多彩,但每个房间里怎么装饰就得你们自己放东西,当然装饰就得交给css了, 后面讲到<p class>大家就懂了。p标签就是一个框,将里面的东西框起来,然后通过css来使这个框按照所需要的样式显示出来。 <p>就是分类,把一类东西放在一块,另一类东西放另一块。这样一目了然,就是<p>实现的。
p(pISION) As the name suggests, it divides the web page into blocks. p and span can be regarded as a container, or a box (Box model) .
is equivalent to placing many containers on the browser screen. In order to look comfortable, each container must of course be arranged neatly and orderly - p positioning issues use CSS position, and FloatThe problem is using CSSfloat and the use of box model layout;
In addition, after placing the container, it is necessary to put the content, such as lists, texts, images Wait, it's just like putting vegetables in a plate container. Of course, more dishes will look better. This is the role of CSS.
We must integrate everything in our studies and learn to be a great Web front-end.
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title>p标签</title> 6 </head> 7 <body> 8 <p> 9 <h2>热门课程排行榜</h2> 10 <ol> 11 <li>前端开发面试心法 </li> 12 <li>零基础学习html</li> 13 <li>javascript全攻略</li> 14 </ol> 15 </p> 16 <p> 17 <h2>web前端开发导学课程</h2> 18 <ul> 19 <li>网页专业名词大扫盲 </li> 20 <li>网站职位定位指南</li> 21 <li>为您解密Yahoo网站制作流程</li> 22 </ul> 23 </p> 24 </body> 25 </html>
We put some tags into
to create an independent logic part. In order to make the logic clearer, we can set a name for this independent logical part,
用id属性来为
提供唯一的名称,这个就像我们每个人都有一个身份证号,这个身份证号是唯一标识我们的身份的,也是必须唯一的。
如下两图进行比较,如果设计师把两个图给你,哪个图你看上去能更快的理解呢?是不是右边的那幅图呢。
语法:
…
来试试给网页的独立的版块添加“标记”
1、在编辑器中的第8行修改
代码为
。
2、在编辑器中的第16行修改
代码为
。
别忘了标记版块名称的语法:
…
p相当于划分成一个个房间,id就是房间号了
p的ID号是为了使用CSS的ID选择器,应用CSS样式,否则毫无意义。
有时候我们需要在网页上展示一些数据,如某公司想在网页上展示公司的库存清单。如下表:
想在网页上展示上述表格效果可以使用以下代码:
创建表格的四个元素:
table、tbody、tr、th、td
1、
2、
…:当表格内容非常多时,表格会下载一点显示一点,但如果加上标签后,这个表格就要等表格内容全部下载完才会显示。3、
4、
5、
6、表格中列的个数,取决于一行中数据单元格的个数。
上述代码在浏览器中显示的默认的样式为:
总结:
1、table表格在没有添加css样式之前,在浏览器中显示是没有表格线的
2、表头,也就是th标签中的文本默认为粗体并且居中显示
来试试为数学成绩表添加一行内容
在右部编辑器中的第25-29行输入下列代码:
25.
26.
27.
28.
29.
结果图:
1、表格的行标签的语法:
2、一行中的单元格语法:
<tr> <td>…</td> <td>…</td> … </tr>
tbody 防止那种因网速慢加载一点显示一点的情况,
如果把网页比作一个女士
加载样式的过程是化妆过程
那么tbody就相当于屏蔽了化妆的过程直到
女士化好妆在真正出来见人
tr是“table row(表格行)”的缩写,用于表示一行的开始和结束。这也容易理解。
td是“table data(表格数据)”的缩写,用于表示行中各个单元格(cell)的开始和结束。
table 创建表格
tbody全显示出来
th表头
tr每一行
td每一个单元格
表格的一个单元格,有几个 | 就有几列。 | 表格表头标签。 |
---|