Blogger Information
Blog 9
fans 0
comment 0
visits 8005
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1208前端标签学习作业
扬cium
Original
577 people have browsed it

<title> 标签定义文档的标题

1.title标签只能在head标签内出现;
2.定义浏览器工具栏中的标题;
3.浏览器中收藏夹内书签的名称是title的内容;
4.title的内容可以方便搜索引擎索引页面;
5.从搜索引擎搜索到的内容的标题往往是网页title的内容;title通常体现了网页的主题内容


标题通过<h1> - <h6> 标签来定义的

标题标签: 除了设置文档标题之外,是用来划分页面结构

  1. <h1>php中文网</h1>
  2. <h2>php中文网</h2>
  3. <h3>php中文网</h3>

段落通过标签 <p> 来定义

<p>php中文网</p>

链接通过标签 <a> 来定义

<a href="https://www.php.cn/">PHP中文网</a>
target 属性
target=”_self” _self: 默认。在相同的框架中打开被链接文档
target=”_blank” _blank: 跳转的新页面在新窗口打开
target=”iframt” 在指定窗口打开内联框架中的name值
例如:<a href="https://www.php.cn/" target="_self">PHP中文网</a>


图片元素

  1. <img src="https://img.php.cn/upload/course/000/000/001/5d24289c99b05106.jpg" alt="web前端开发" width="200" />

图片设置大小的时候,只需要设置一个,如宽度或高度,另一个会等比缩放


锚点

<a href="#footer">点我跳转到底部</a>

<div id="footer" style=“margin-top:1000px”>我是底部</div>
<div id="#"e>回到顶部</div>

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