这一节我们讲一下图像从本地插入和外部插入的实例。
实例代码:
<!doctype html>
<head>
<meta charset="utf-8">
</head>
<html>
<body>
<p>这是一个本地插入的图像</p>
<img src="timg.jpeg" width="200" height="150">
<p>这是一个外部插入的图像</p>
<img src="https://www.dwoke.com/sites/default/files/inline-images/coverimage_0.png" width="300" height="250
">
</body>
</html>
运行效果:
从这个实例中看到,我们第一个图像是从本地文件夹插入的,第二个图像是从互联网中插入的。
评论