⼀.快捷键
1、隐藏:ctrl+shift+?
2、保存:ctrl+s
3、复制:ctrl+c
4、粘贴:ctrl+v
5、撤销:ctrl+z
⼆.简单符号
1、标签,成对存在:< >
2、结束标签:</ >
3、⼤标题:<title> </title>
4、⼩标题(分为 h1-h6,标题⼤⼩不同):<h1> </h1>
5、段落:<p> </p>
6、换⾏:<br>
7、下标:<sub> </sub>
8、上标:<sup> </sup>
9、加粗⽂本:<b> </b><br><br>
10、斜体⽂本:<i> </i><br><br>
11、电脑⾃动输出:<code> </code><br><br>
三.代码
1、覆盖跳转到百度:<a href="http://www.baidu.com">跳转到百度</a>
2、打开新界⾯、跳转到百度:<a href="http://www.baidu.com target="_blank">跳转到百度</a>
3、⽂字居中显⽰:<h1 style="text-align: center;">⽂字居中显⽰</h1>
4、插⼊图⽚并设置宽、⾼:<img src="img/logo.png" width="258" height="39" />
5、⽂字替代(加载不出图⽚的时候):<img border="0" src="img/pulpit.jpg" alt="Pulpit rock" width="304" height="228">
6、带表头的边距为1的表格:
<table border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
7、⽆序列表
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
8、通过⼗六进制设置背景颜⾊
<p style="background-color:#FFFF00">
通过⼗六进制设置背景颜⾊
</p>
9、通过 rbg 值设置背景颜⾊
<p style="background-color:rgb(255,255,0)">通过 rbg 值设置背景颜⾊
</p>
10、通过颜⾊名设置背景颜⾊
<p style="background-color:yellow">
⼀.快捷键
1、隐藏:ctrl+shift+?
2、保存:ctrl+s
3、复制:ctrl+c
4、粘贴:ctrl+v
5、撤销:ctrl+z
⼆.简单符号
1、标签,成对存在:< >
2、结束标签:</ >
第 1 页
3、⼤标题:<title> </title>
4、⼩标题(分为 h1-h6,标题⼤⼩不同):<h1> </h1>
5、段落:<p> </p>
6、换⾏:<br>
7、下标:<sub> </sub>
8、上标:<sup> </sup>
9、加粗⽂本:<b> </b><br><br>
10、斜体⽂本:<i> </i><br><br>
11、电脑⾃动输出:<code> </code><br><