1
<html>
<head>
<title>逻辑字体</title>
</head>
<body>
html //代码<code>html //代码</code>
<em>文字 --斜了</em>
<br>
<strong>文字--加重</strong>
<br>
<small>文字--小的</small>
<br>
<big>文字--小的</big>
<big><big>文字--小的</big></big>
</body>
</html>
2
3 第二种方法
<html>
<head>
<title>物理字体</title>
</head>
<body>
<b>文字--粗体</b>
<br>
<i>文字--斜体</i>
<br>
<u>文字--下划线</u>
<s>文字--删除线</s>
<br>
<strike>文字--删除线</strick>
</body>
</html>