-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_label.html
More file actions
31 lines (29 loc) · 1.03 KB
/
image_label.html
File metadata and controls
31 lines (29 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!--
* @由于个人水平有限, 难免有些错误, 还请指点:
* @Author: cpu_code
* @Date: 2020-10-08 19:26:07
* @LastEditTime: 2020-10-08 19:42:55
* @FilePath: \web\html\image_label\image_label.html
* @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
* @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
* @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
* @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
-->
<!DOCTYPE html>
<html lang="ch">
<head>
<meta charset="UTF-8">
<title>cpucode图片标签</title>
</head>
<body>
<!-- 展现一张图片 img -->
<img src="image/jiangxuan_1.jpg" align="right" alt="城市" width="500" height="500" />
<!--
相对路径
* 以.开头的路径
* ./:代表当前目录 ./image/1.jpg
* ../:代表上一级目录
-->
<img src="./image/jiangxuan_1.jpg" />
</body>
</html>