html標簽 html的骨架 <html> <head> <title> </title> </head> <body> </body> </html> 圖片的標簽img 1.基本圖片插入方式: <img src="#" /> src:圖片的屬性 2.帶有alt的圖片 <img src="#" al ...
html標簽
- html的骨架
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html> -
圖片的標簽img
1.基本圖片插入方式:
<img src="#" />
src:圖片的屬性2.帶有alt的圖片
<img src="#" alt="圖片"/>
alt:替換文本的屬性3.帶有title的圖像
<img src="#" title="圖片"/>
title:顯示圖片的標題4.帶有寬度的圖像
<img src="#" width="300" height="300"/>
5.帶有邊框的圖像
<img src="#" border="10"/>
-
標題標簽
我是h1標簽:<h1> </h1>
我是h2標簽:<h2> </h2>
我是h3標簽:<h3> </h3>
我是h4標簽:<h4> </h4>
我是h5標簽:<h5> </h5>
我是h6標簽:<h6> </h6>
-
strong標簽、em標簽、ins標簽、del標簽
我正在學前端,strong標簽有強調作用。em標簽使字體傾斜,ins標簽是下劃線,
del是刪除標簽。 -
div標簽和span標簽
這是一個div佈局這是一個span佈局
-
屬性標簽
<hr color="red">
-
鏈接標簽<a> </a>
百度
我的作品 -
錨點定位
定位到標題標簽 -
base標簽
<base target="_blank"/> -
路徑
- 相對路徑
- 同一級路徑
主頁面和跳轉頁面在同一文件夾中
- 上一級路徑
跳轉頁面在上一個文件夾中
- 下一級路徑
跳轉頁面在下一個文件夾中
-
絕對對路徑
-
<a href="https://www.baidu.com/img/bd_logo1.png">網站的絕對路徑</a>
網站的絕對路徑 -
<a href="G:\01\案列\01.html" >本地的絕對路徑</a>
-
-
列表
- 蘋果
- 香蕉
- 葡萄
- 橘子
- 美國
- 中國
- 英國
- 日本
- 列表
- ul無序列表
- ol有序列表
- 自定義列表