今日學習內容總結3.5
阿新 • • 發佈:2022-04-21
列舉 HTML 標籤。
head
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
標籤
註釋 <!--註釋-->
空格
引用 <q> </q>
大段引用 <blockquote> </blockquote>
強調 <em> </em> <strong> </strong>
地址 <address> </address>
程式碼 <code> </code> <pre> </pre>
無序列表
<ul>
<li> </li>
</ul>
有序列表
<ol>
<li> </li>
</ol>
表格
<table> <caption> </caption> <tr> <th></th> </tr> <tr> <td></td> </tr> </table>
連結
<a href=" " title=" " target="_blank"> </a>
圖片
<img src=" " alt=" " title=" " />