img標籤詳解
影象標籤<img>用於向使用者展示圖片
注意:所有的標籤都可以有屬性
如:<img src="img/fishing.jpg" alt="Mr Green's Fish Emporium" width="100%">
其中,img是影象標籤;之後都是屬性:src是儲存圖片的源地址,且圖片存放在與HTML檔案同一路徑下的img資料夾下,width和height是圖片的寬度和高度(若指定width="100%",表示不管圖片尺寸,將圖片設定為瀏覽器寬度的100%,自動按照比例確定圖片高度),alt是提供替代圖片的資訊,使螢幕閱讀器能獲取關於圖片的資訊,即對圖片作簡要說明,這不會影響圖片顯示;
注意:這些圖片設定可以在CSS實現,分為視覺化部分、結構化部分,HTML用於結構構建,CSS用於視覺設計,推薦在CSS中將圖片的寬度設定為100%
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="keywords" content="fish, smelly, trout, shark">
<meta name="description" content="We shell the smelliest fish online, guranteed!">
<title>my first web page</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<img src="img/fishing.jpg" alt="Mr Green's Fish Emporium" width="100%">
<h1>Welcome to my smelly fish shop</h1>
<p>We sell the smelliest fish on the planet</p>
<h2>Types of Fish We Sell</h2>
<h3>Freshwater Fish</h3>
<p>We are experts in catching many types of freshwater fish...</p>
<h3>Saltwater Fish</h3>
<p>We are experts in catching many types of Saltwater fish...</p>
<h2>About Us</h2>
<p>Mr Green's Smelly Fish Emporium prides itself on catching, preparing and delivering
the smelliest fish right to your doorstep. Whether you like to cook them, feed them to
your cat, or just hide them in your unruly neighbours porch, Mr Green has it covered!</p>
<h2>Contact Us</h2>
<p>You can contact Mr Green in various ways...</p>
<h3>By phone</h3>
<p>222-222-Fish</p>
<h3>By Email</h3>
<p>twcyq@mrgreenfish.com</p>
<h3>By carrier pidgeon</h3>
<p>To do this, order your pidgeon at www.mrgreenfish.com</p>
</body>
</html>
相關文章
- 解決img標籤與其它標籤間隙問題?
- HTML中IMG標籤總結HTML
- input 標籤詳解
- ANT標籤詳解
- HTML標籤詳解HTML
- Struts標籤庫詳解
- POM.xml 標籤詳解XML
- Git tag標籤用法詳解Git
- HTML常見標籤詳解HTML
- struts2標籤詳解 .
- springmvc常用註解標籤詳解SpringMVC
- dedecms模板標籤dede:channelartlist詳解
- Go 結構體標籤詳解Go結構體
- spring xml配置標籤詳解SpringXML
- 自定義分頁標籤詳解
- mybatis中foreach標籤詳解MyBatis
- HTML5標籤embed詳解HTML
- Maven中optional標籤詳解(轉)Maven
- <img>標籤的alt屬性簡單介紹
- HTML5常見標籤詳解HTML
- Struts2的OGNL標籤詳解
- Dreamweaver使用img標籤定義影像高寬的教程
- HTML表單標籤詳解:如何用HTML標籤打造互動網頁?HTML網頁
- <img>標籤的src=""空字元會出現的情況字元
- HTML img標籤之onAbort、onError、onLoad事件與問題HTMLError事件
- 標籤實現預載入功能詳解
- JavaScript物件導向修改標籤頁詳解JavaScript物件
- maven中的scope標籤類別詳解Maven
- 常用的HTML標籤詳解與總結HTML
- 詳細瞭解HTML標籤內容模型HTML模型
- Web前端技術分享:img標籤下方出現空隙的問題解決方案Web前端
- 正規表示式處理圖片地址、img標籤的方法
- Html網頁中meta標籤及用法詳解HTML網頁
- script標籤的defer和async屬性詳解
- 前端 img標籤顯示 base64格式的 圖片前端
- <link>標籤實現預載入功能詳解
- [教程]圖片太大怎麼辦?當然是用img標籤了啊
- HTML5標籤HTMLCollection和NodeList的區別詳解HTML