img 元素向网页中嵌入一幅图像
<img>标签有两个必需的属性:src 属性 和 alt 属性
src表示图像的URL
alt表示图像的替代文本,不能加载图片时显示
<img src="//img.hb.aicdn.com/9f45c2aa7106e989045e0adc7c1ddc834dbecd6a2cfea-qSM9nb_fw658" alt="test" width="300" height="300" />
为什么你的图片没有显示?
src可以是相对路径,也可以是绝对路径。你说的网盘上的图片,你么应该是从网络上,举个例子:
<img src="http://www.baidu.com/img/bd_logo1.png" alt="test" width="300" height="300" />