1. 程式人生 > >html標簽之img

html標簽之img

one color not solid note 圖片 auto borde class


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>image tag演示</title>
</head>
<body>
    <img src="./img/qzx1.jpg" alt="全智賢" title="妹子" width="200px">
    <img src="./img/freebsd.jpg" alt="freebsd" title="類unix" width="200px"
><br /> <img src="./img/qie.gif" alt="竊格瓦拉" title="類unix" > <img src="./img/notExist.gif" alt="這是圖片不存在顯示的" title="不存在" > </body> </html>


<img src="./img/qzx1.jpg" alt="全智賢" title="妹子" width="200px">

alt:圖片不存在時顯示的文字

title:鼠標放到圖片上時,顯示的文字

src:圖片的源地址


效果

技術分享圖片

html標簽之img