## 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.网页调试
![](https://box.kancloud.cn/0060e5621f8a9c9216995b6600854c3e_859x721.png)
>f12 调出控制台
>shift+↓/↑,↑/↓,快速调大小
## 4.盒子模型
![](https://box.kancloud.cn/e884a52adb8b59acc66c3f0f20922e3a_213x180.png)
`box-sizing`设置为`border-box`给元素`padding,border`不会改变它的`width,height`
```
div{
box-sizing:border-box;
}
```
![](https://box.kancloud.cn/c7bcc2f9dc3c270a8e57fa02f45fc407_711x486.png)
## 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 基础语法