本文介绍6种常用的HTML标签和CSS样式。
1.段落标签
<p>第一段内容</p>
<p>第二段内容</p>
The first paragraph
The second paragraph
2.换行标签
第一行内容<br>
第二行内容<br>
第三行内容
The contents of the first line
The contents of the second lne
The contents of the third line
3.加粗标签
方法一: <b>需要加粗的内容</b>
方法二: <p style="font-weight:bold* >需要加粗的内容</p>
Example1: Need bold content
Example2: Need bold content
4、文字大小代码
<p style="font-size:10px" >需要设置文字大小的内容</p>
The contents of need to set the text size
5、文字颜色代码
<p style="corf#ff00O >需要设置文字颜色的内容</p>
The contents of need to set the text size
6、文字字体代码
<p style= "font- family:verdana,arial,helvetica,sans -serif" >
需要设置文字字体的内容</p>
The contents of need to set the text font
以上就是6种常用的HTML标签和CSS样式,希望对您有帮助。