標題結構

twc829發表於2016-05-04

<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />          
		<!...使用UTF-8字符集編碼...>
		<meta name="keywords" content="fish, smelly, trout, shark">
		<!...元關鍵詞標籤,為Google或其他搜尋引擎提供關鍵詞...>
		<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"> 
		<!...CSS連結標籤,瀏覽器會根據CSS引用去開發者或使用者指定的地址得到CSS檔案來設計網頁...>
		<!...連結標籤與該HTML檔案關聯,是樣式表,以CSS文字型別,尋找CSS檔案的地址...>
	</head>
	
	<body>
		<h1>Welcome to my smelly fish shop</h1>                        <!...h標籤範圍僅限於h1到h6...>
		<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>



相關文章