Blogger Information
Blog 6
fans 0
comment 0
visits 3771
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML基础—02
Eachone的博客
Original
495 people have browsed it

1.超链接

        <a href="url">链接文字</a>

        href属性:定义连接的目标路径

        name属性:定义锚点名

        target属性:定义打开窗口的方式,_blank 新窗口打开

2.相对路径与绝对路径

        绝对路径:以协议开头的url(https:// https:// file:/// )

        以 / 开头的网站根目录的写法

        相对路径:以当前文件为基准去找目标文件

                ./ 当前文件所在目录(可以不写)

                ../ 返回上级目录

                文件夹名/ 进入文件夹

3.img图片标签

        <img src="url" alt="说明"/>

        src属性:定义目标图片的路径

        alt属性:图片失效时显示的文字

        width属性:定义图库宽度

        height属性:定义图片高度

4.列表

         无序列表:

         <ul>

         <li>显示内容</li>

         <li>显示内容</li>

         </ul>

         有序列表:

         <ol>

         <li>显示内容</li>

         <li>显示内容</li>

         </ol>

         定义列表:

         <dl>

         <dt>上层目录</dt>

         <dd>下层目录</dd>

         </dl>

5.表格

         table标签:定义表格

         tr标签:定义一行

         td标签:定义一个单元格

         th标签:定义表头的单元格

         <table>

         <tr>

         <td>显示的内容</td>

         </tr>

         </table>

     表格的合并

         td的两个属性

         colspan:横向合并,跨列

         rowspan:纵向合并,跨行


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