HTML 簡潔格式(常用推薦)
<!-- --> //代碼開始之前,一定不要加注釋標記
<!DOCTYPE html> //可選(代碼頂部)//作用:聲明為 HTML5 文檔
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> //必須有(防止亂碼)
<title></title> //必須有(頁面內容清晰)
<link rel="stylesheet" type="text/css" href="../css/common.css" /> //1.外部樣式表
<style> //2.內部樣式表
a {
color: green;
text-decoration: none; /*去除鏈接下劃線*/
}
</style>
<p style="color:red;">This is a demo.</p> //3.行內樣式(也稱內聯樣式)
posted on 2024-06-17 19:55 zhuyongzhe 閱讀(19) 評論(0) 收藏 舉報
浙公網安備 33010602011771號