## 1.開始結束標簽
```
//start tag
<body>
//end tag
</body>
```
>[danger]`<br/>`沒有開始標簽
## 2.HTML標簽結構
```
<html>
<head>
<meta></meta>
<title></title>
<link></link>
<script></script>
</head>
<body> //僅body標簽內容可見
...
</body>
</html>
```
## 3.網頁調試

>f12 調出控制臺
>shift+↓/↑,↑/↓,快速調大小
## 4.盒子模型

`box-sizing`設置為`border-box`給元素`padding,border`不會改變它的`width,height`
```
div{
box-sizing:border-box;
}
```

## 5.HTML常用標簽
#### **塊標簽特點**
* 獨占一行
* 可以設置width,height
* 可以設置margin-top,margin-bottom
```
<h1>~<h6> //title
<p></p> //paragrahp
<div></div> //divide
<ul> //unordered link
<li></li> //list item
</ul>
<dl> //define list
<dt></dt> //define term
<dd></dd> //define description
</dl>
```
*****
#### **內聯塊特點**
* 并排顯示
* 能設置width,height
* 能設置margin-top,margin-right
```
<img></img> //images
<input></input> //input輸入框
<button></button> //button按鈕
```
*****
#### **內聯標簽特點**
* 并排顯示
* 不能設置width,height
* 不能設置margin-top,margin-botom
```
<a></a> //link
<span></span> //定義文檔中的節
<strong></strong> //定義強調文本
<em></em> //定義強調文本
<i></i> //顯示斜體文本效果
<label><label> //為 input 元素定義標注(標記)
```
- 第一章 git
- 1.1 git基本語法
- 1.2 版本回退
- 1.3 ssh的配置
- 第二章 markdown基本語法
- 第三章 HTML CSS
- 3.1 html基礎知識
- 3.2 css基礎
- 3.3 img垂直居中
- 3.4 清除鼠標懸停抖動
- 3.5 字體、列表、表格、文本、鏈接樣式
- 3.6 屬性繼承
- 3.7 float
- 3.8 定位
- 3.9 li加邊框文字移動問題
- 3.10 title旁邊的小圖標
- 第四章 Vue
- 4.1
- 第五章 JavaScript
- 5.1 基本語法
- 5.2 DOM事件
- 5.3 事件
- 5.4 jQuery引用
- 5.5 顯示與隱藏
- 5.6 回到頂部
- 第六章 jQuery
- 6.1 基礎語法