HTML
HTML 图像
从不同的位置插入图片 - 本例演示如何将其他文件夹或服务器的图片显示到网页中。
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p>一个来自文件夹中的图像:</p> <img src="/images/chrome.gif" alt="Google Chrome" width="33" height="32"> <p>一个来自蜜蜂教程的图像:</p> <img src="https://www.mifengjc.com/images/logo.png" alt="mifengjc.com" width="180" height="64"> </body> </html>
运行结果:
点击运行 »