目录层级关系
test-1.html与image平级,所以src的路径为image/1.png,如果不是平级,找到test-1.html的父级目录所在文件是否与image平级,来编写src参数
![](https://img.haomeiwen.com/i15616481/1e19f34180c9f6b6.png)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>第一个页面</title>
</head>
<body>
logo:<img src="image/1.png" alt="not found"/>
</body>
</html>
![](https://img.haomeiwen.com/i15616481/a230622219d8770c.png)
大小的设置
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>第一个页面</title>
</head>
<body>
logo:<img src="image/1.png" alt="not found" width="100px" height="100px" >
</body>
</html>
![](https://img.haomeiwen.com/i15616481/621bb30271c6e6bb.png)
网友评论