Blogger Information
Blog 2
fans 0
comment 0
visits 986
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
7.2作业
ND-0001
Original
559 people have browsed it

4 项作业:

  1. 默写HTML文档的基本结构

  2. 实例演示无序列表的基本使用

  3. 实例演示表格的用法以及行列合并的应用

  4. 实例演示表单以及常用控件元素的使用(必须掌握)

    =========================

    以下是文档的结构学习了解。

实例

<!--文档内容-->

<!DOCTYPE html>

<!--这个是用来识别是那个国家的语言-->
<html lang="zh-cn">
<!--这个是头部的内容,不显示在主页面中-->

<head>
    <!--这个是编码集-->
    <meta charset="UTF-8">
    <!--这个是页面的标题名称-->
    <title>网页标题</title>
</head>
<!--这个是用户可以观看到的页面内容部份-->
<body>
<!--这是H1大小的标题-->
<h1>整个页面的内容在body之间</h1>

</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

===================================

以下是无序例表的相关了解:


实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>无序例表</title>
</head>
<body>
<!--1. 无序列表,UL就是无序列表,OL就是有序列表-->
<ul>
    <!--li是元素标签-->
    <li>1第一行</li>
    <li>2第二行</li>
</ul>


</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

其它后面两个作业,没搞明白是什么意思?

  • 实例演示表格的用法以及行列合并的应用

  • 实例演示表单以及常用控件元素的使用(必须掌握)


Correction status:qualified

Teacher's comments:html标签众多, 但是常用的并不多, 对于课堂上未提及的标签, 可以通过手册进行自学
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments