Blogger Information
Blog 4
fans 0
comment 0
visits 2082
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
页面中常用文本元素3-11
大卫同学的博客
Original
487 people have browsed it

<!DOCTYPE html><!-- 声明,告诉浏览器以下的文档是HTML -->

<html>

  

<head> <!-- 文档头部 head head内部的元素可以引用脚本、样式表、味网页提供元素 -->

<title>

学习Web的第一节课

</title> <!-- 文档头部 -->

    <meta charset="utf-8"> <!-- meta标签 国际标签 中文不会乱码 -->

    <meta name="viewport" content="width,user-scale=1,0,maximum-scale=1.0,minium-scale=1.0">

<!-- 手机端viewport,不允许用户缩放 -->

    <link rel="stylesheet" type="text/css" href="favicon (1).ico"> <!-- link=引入外部文件,rel=链接过来的文档和被链接的文档关系,stylesheet=链接一个外部的层叠外部表,href=链接 type=定义链接文档类型,-->

    <link rel="icon" type="image/x-icon" href="favicon.ico"> <!-- 引用头部logo -->

    <style type="text/css">

    *{margin:0;padding:0;}

        p{

            width: 400px; /*宽度*/

        text-indent: 2em; /*首行缩进*/

        }

    </style> <!-- 内部样式 -->



</head>


<body>

<!-- 标题标签是通过<h1>~<h5>标签来定义的 -->

<h1>第一个标题标签</h1>

<h2>第二个标题标签</h2>

<h3>第三个标题标签</h3>

<!-- 段落标签是通过<p>标签来定义的 -->

<p>原标题:***在出席解放军和武警部队代表团全体会议时强调 打好我军建设发展“十三五”规划落实攻坚战 确保如期完成国防和军队建设目标任务</p>

<!-- 格式化标签 -->

    <b>加粗文本</b>

    <br>

    <small>定义一个小号字体</small>

    <br>定义换行

    <hr> <!-- 定义水平线 -->

    <strong>定义加重语气词strong,便于搜索</strong>

    <del>定义删除线</del>

    <del>599元</del><b>399</b>

    定义缩写 abbr

    <p><abbr title="jiaoxiaohe">David</abbr>(超文本标记语言)</p>

    首行缩进(text-indent)

</body>

</html>


Correction status:unqualified

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!