html image圖片標籤
阿新 • • 發佈:2018-12-26
<!DOCTYPE html>
<html>
<head>
<title>image.html</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=GBK">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
This is my HTML page. <br>
<!-- src為圖片的源地址,
height和width控制圖片的大小,
title為滑鼠滑過圖片時對圖片的說明,
alt與title的區別在於alt實際只是圖片看不見時對使用者的一個說明,並不是真正的用於對圖片的說明,會失效
border為內邊距 -->
<img src="imags\1.jpg" height="100" width="100" title="你好" border="10"/>
</body>
</html>
<html>
<head>
<title>image.html</title>
<meta name="keywords" content="keyword1,keyword2,keyword3">
<meta name="description" content="this is my page">
<meta name="content-type" content="text/html; charset=GBK">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
</head>
<body>
This is my HTML page. <br>
<!-- src為圖片的源地址,
height和width控制圖片的大小,
title為滑鼠滑過圖片時對圖片的說明,
alt與title的區別在於alt實際只是圖片看不見時對使用者的一個說明,並不是真正的用於對圖片的說明,會失效
border為內邊距 -->
<img src="imags\1.jpg" height="100" width="100" title="你好" border="10"/>
</body>
</html>