如何在网页中使用图片?

javascriptweb developmentfront end scripts

要在网页上使用图片,请使用 <img> 标签。该标签允许您添加图片来源、alt、宽度、高度等。alt 是替代文本属性,即图片加载失败时可见的文本。

以下是属性 −

属性
说明
Alt
图片的替代文本
height
图像的高度
Ismap
作为服务器端图像映射的图像
Longdesc
指向图像
Src
图像的 URL
Usemap
作为客户端图像映射的图像
width
图像的宽度

请记住,<img> 标签没有结束标签。

示例

您可以尝试运行以下代码以在 HTML 中的网页中使用图像

<!DOCTYPE html>
<html>
   <head>
      <title>HTML img tag</title>
   </head>
   <body>
      <h1>Tutorialspoint</h1>
      <h2>Simply Easy Learning</h2>
      <img src="/green/images/logo.png" alt="Tutorialspoint" width="260" height="100">
   </body>
</html>

相关文章