Blogger Information
Blog 11
fans 0
comment 0
visits 10293
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
无序列表与有序列表2019-0702
简单的博客
Original
799 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>无序与有序列表</title>
</head>
<body>
<!--1. 无序列表-->
<h3>标题1</h3>
<ul>
    <li>小明学习</li>
    <li>用电脑</li>
    <li>学习php语法</li>
</ul>

<!--2.有序列表-->
<h3>标题2</h3>
<ol>
    <li>用电脑</li>
    <li>学习php语法</li>
    <li>元素</li>
</ol>

<!--开发中, 无序列表使用更广泛, 例如导航-->
<ul>
    <li><a href="">面向对象</a></li>
    <li><a href="">函数</a></li>
    <li><a href="">变量</a></li>
    <li><a href="">语法</a></li>
    <li><a href="">框架</a></li>
</ul>
<d>
    <dt>标题3</dt>
    <dd>学什么并不重要</dd>

    <dt>标题4</dt>
    <dd>已经开始学了才重要</dd>

    <dt>标题5</dt>
    <dd>别在选择中浪费时间了<dd>
</d>
</body>
</html>

运行实例 »

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

{H6X1YVK@13XIXY(LZV{YS6.png

Correction status:qualified

Teacher's comments:一个标签一个作业, 这样不便于作业核对, 下次注意
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