Blogger Information
Blog 16
fans 0
comment 0
visits 16831
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第一天的作业
刚哥哥
Original
454 people have browsed it

1208作业

一、配置电脑开发环境:

1、安装谷歌浏览器,并且安装一些插件;
2、安装VsCode编辑器,
3、插件根据需求安装,如:编辑器的中文语言插件,html css 代码提示插件;浏览器中的翻译插件、获取颜色插件、广告拦截插件。

二、HTML 是超文本标记语言,HTML使用标记标签来描述网页。

标签分为双标签和单标签。

页面上看到的内容叫元素,

  1. <h1>h1标签</h1>
  2. <h2>h2标签</h2>
  3. <p>段落标签</p>
  4. <a href="链接地址" />超链接标签a</a>

a标签 的target属性,可以链接的文档在何处显示,如:<a href = “www.baidu.com targer=”_blank”>点我打开超链接</a> 。
targer 是超链接跳转的方式,_self是在当前页面打开,_blank是在新窗口打开。

iframe标签是在当前窗口内嵌一个网页窗口,多用于系统后台布局。内联框架。

<iframe src="index.html"></iframe>

HTML链接 name属性,

name属性规定锚(anchor)的名称。当使用命名锚(named anchirs)时,我们可以创建直接跳转至该命名锚的链接,

图片标签<img>

<img> 是空标签,它只包含属性,没有闭合标签。
<img src="www.baidu.com" alt="说明文字">
img标签 src 设置图片地址,alt 对图片进行说明,图片打不开的时候就显示这个说明文字。

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