html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>图片的引入</title>
</head>
<body>
<!--网页中引入图片:使用img标签,<img src="图片路径"/>-->
<!--src属性:
1.用来指定图片文件所在的路径,必须要有
2.图片路径可以是相对路径,也可以是绝对路径-->
<!--<img src="img/logo.png"/>-->
<!--<img src="https://www.51zxw.net/Contents/Images/logo.png"/>-->
<img src="https://ts2.cn.mm.bing.net/th?id=ORMS.b9a08e9a5cab855277133ebc2c195364&pid=Wdp&w=612&h=304&qlt=90&c=1&rs=1&dpr=2&p=0"/>
</body>
</html>