我最近在学习编写网页,但是前端写了插入图片的代码后,运行后的网页上没显示图片,麻烦解答一下。
前端代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>激肽酶</title>
</head>
<body>
<h1>求救</h1>
<img src="D:\360MoveData\Users\DELL\Desktop\web\templates\pictures\p1.jpg" alt="" title="鸡你太美" height="">
</body>
</html>
后端代码:
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/hhh')
def index():
return render_template('web1.html')
if __name__ == '__main__':
app.run()
图片链接:

网页运行图:
