HTML 超文本標記語言
1.基本結構
<!doctype html> ---文檔聲明
<html> ---HTML文檔
<head> ---頁頭
</head> ---頁頭結束
<body> ---頁身
</body> ---頁身結束
</html> ---HTML文檔結束
注釋: <!-- 這是注釋內容 --> ctrl+shift+/
2.基本標簽
標題標簽: <h1>到<h6>
居中: align="center"
段落標簽: <p>
換行標簽: <br>
水平線標簽: <hr>
粗體標簽: <b>、<strong>
斜體標簽: <p>、<cite>、<em>
上標標簽: <sup>
下標標簽: <sub>
大字號標簽: <big>
小字號標簽: <small>
刪除線標簽: <s>
下划線標簽: <u>
特殊符號:空格
3.示例: