Blogger Information
Blog 7
fans 0
comment 2
visits 5341
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第二课作业
虫先森
Original
759 people have browsed it

html语言的基本结构

  • 1 嵌套式的结构
    html语言在整体结构上,是一种嵌套包围的层级结构。


    1. <html>

    2. <head>

    3. </head>

    4. <body>

    5. </body>

    6. </html>

  • 2 内容组合
    html由许多不同的元素组合构成。
    不同的元素有不同的标签类型。


    • 非空元素
      这类元素中需要填入相关的内容。由两个标签首尾呼应形成一个元素。内容填写在首尾标签之间。


    1. <a href="../good.html">一个跳转上级目录文件的超链接</a>

    2. <p>我是一段话,一个段落文字</p>

    3. <h3>3#标签来了</h3>


    • 空标签
      这类元素通常是引用其他的文件、图片、视频等资料。
      <img src="./img/hao.jpg" alt="我是一个从根目录开始顺的图片哦!">


    • 标签的属性和值
      html的每个标签都有相关的属性,通过给属性赋值,就可以控制每个标签的表达形式。
      <h2 style="color:red;font-size: 105px;">通过属性可以控制这段文字的大小</h2>


    • 三大通用属性

属性作用示例
id给元素添加唯一标识<input type="text" id="yourname" />
class给元素添加类样式<h2 style="font1">需要先设置类样式</h2>
style设置当前元素的样式<h1 style="font-size:27px;color:red;>直接在当前设置</h1>

手写作业

1.jpg


通过这一刻的学习了解到html文件是多个元素组合而成的,元素组合方式主要有排列和嵌入两种方式。元素是由属性来控制实现方式的,属性有相关的赋值。本质上html文件就是一个文本文件,通过空标签引用其他的资源形成丰富的显示内容。

Correcting teacher:天蓬老师天蓬老师

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
1 comments
虫先森 2020-04-03 14:22:06
这个有点尴尬,之前用的md编辑的,但不知道为什么md没法上传图片,后来换成富文本上传了图片,然后提交就成了这样,不过也是我没认真检查。下次注意。
1 floor
Author's latest blog post