Blogger Information
Blog 17
fans 0
comment 0
visits 11633
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html的基本结构——1月14号
iL的博客
Original
609 people have browsed it

实例

   <!-- 声明语言的类型 -->

   <!DOCTYPE html>




   <!--"en"代表英文/<html>所有的html内容</html> -->

<html lang="en">

    <!-- <head>整个代码的头部</head> -->

<head>

    <!-- 设置当前文本所采用的的字符编码为"utf-8"格式,供浏览器来解读 -->

    <meta charset="UTF-8">

    <!-- <title>显示在浏览器窗口的标签页</title> -->

    <title>0114第一课

    </title>




    <!-- <link rel="引入对象与文本的关系" type="引入对象的类型" href="引入对象的链接地址"> -->

    <link rel="stylesheet"  type="" href="">

</head>

    <!-- <body>代码的可视部分,注意:body的结尾标签后的注释会在页面显示出来</body>-->

<body style="height:3000px;">




    <!-- <h1></h1>为文章标题标签,数字越大,页面显示越小 -->

<h1>好好学习</h1>

<h2>好好学习</h2>

<h3>好好学习</h3>

<h4>好好学习</h4>




<!-- <img>标签为单标签,作用为引入图片在页面

    "src"的作用为引入图片的地址,

    "alt"的作用为当图片无法显示时显示其内容,

    "width"图片的宽,"height"图片的高-->

<img src="" alt="" width="0px" height="0px">

<!-- <hr>为分割线标签 -->

<hr>

</body>

</html>




<!-- 以上即为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
Author's latest blog post