html网页中使用图片
例如:
<html>
<head>
<title>网页中使用图像</title>
</head>
<body>
<!--图像标签 img-->
<h2>网页图片</h2>
<img src="https://ss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/logo/bd_logo1_31bdc765.png">
<h2>本地图片</h2>
<img width="50"src="D:\温习网页\bd_logo1_31bdc765.png">
<br/>
<img height="50"src="D:\温习网页\bd_logo1_31bdc765.png">
<br/>
<img src="D:\温习网页\bd_logo1_31bdc765.png" width="50" height="30">
</body>
</html>