1. 程式人生 > 其它 >Html--標籤1

Html--標籤1

<!-- html開始標籤 -->
<!DOCTYPE html>
<!-- head 標籤 -->
<head>
    <meta http-equiv="content-type" charset="UTF-8">  <!--字元編碼(請求頭)-->
    <meta name="keywords" content="標籤, html, meta">  <!--檢索關鍵字-->
    <meta name="description" content="描述資訊">  <!--描述資訊-->
    <!--<meta http-equiv="refresh" content="2">-->  <!--2秒後重新整理,跳轉到新的url-->
<!--    <meta http-equiv="refresh" content="2;url=https://www.baidu.com">-->
    <meta http-equiv="x-ua-compatible" content="IE=EmulateIE11"/>  <!--相容IE瀏覽器-->
    <title>Home</title>  <!--標題-->
    <link rel="icon" href="https://cos.amfc.ltd/learn/html/ammo_num.ico">  <!--標題圖示-->

</head>
<body>

<h1>一級標題</h1>  <!--標題-->
<h2>二級標題</h2>
<h3>三級標題</h3>
<h4>四級標題</h4>
<h5>五級標題</h5>
<h6>六級標題</h6>

<p>段落一</p>  <!--段落-->
<p>段落二</p>

換行 <br>  <!--換行-->

<p><b>加粗</b></p>  <!--加粗-->
<p><strong>加粗</strong></p>

<strike>中劃線</strike><br>  <!--中劃線-->

<em>斜體</em><br>  <!--斜體-->

3 <sup>2</sup><br>  <!--上標-->  
3 <sub>2</sub><br>  <!--下標-->

<hr>  <!--水平線-->




</body>