Blogger Information
Blog 2
fans 0
comment 0
visits 1503
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
7月2日课后作业-html文档结构以及标签的基本使用
张润春的博客
Original
558 people have browsed it
  • HTML文档基本结构

    html基本结果如下

实例

<html lang="en">
 <head>
<body>
Hello World!
</body>
</head>
</html>

运行实例 »

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


  • 无序列表的使用演示

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>无序列表演示</title>
</head>
<body>
<ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
    <li>6</li>
</ul>
</body>
</html>

运行实例 »

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


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
Author's latest blog post