- 注釋
``
- 根標簽
<html></html>
- 頭部標簽
<head></head>
- 編碼標簽
<meta charset = @"UTF-8">
- 標題標簽
<title>第一個程序</title>
- 身體標簽
<body>哈哈哈哈</body>
- 段落標簽(段落之間會有行距)
<p>哈哈哈hahhahahahahha哈</p>
- 輸入框
普通輸入框:<input>
占位文字:<input placeholder="請輸入用戶名">
設置值:<int value="張三">
顏色面板:<input type="color">
多選:<input type="checkbox">
日子面板:<input type="date">
進度條:<input type="range">
- 換行標簽
<br>
- 超鏈接
<a target="_blank">百度一下,你就知道</a>
- 圖像標簽(#號表示沒有圖片占位圖)


- 列表標簽
<ul>
<li>111111</li>
<li>22222</li>
<li>33333</li>
<li>44444</li>
</ur>
- 容器標簽(沒有任何修飾,顯示最原始內容)
<div></div>