<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> </head> <body> <font color="#0066ff" face="楷体" size="5">字体控制 </font> <!--注释--><br /> <b>字体加粗</b> <i>倾斜</i> <u>下划线</u> <strong >字体加粗</strong> <em>倾斜</em> <center>居中</center> 回<br /> 车<br /> <br /> <br /> <h1>h1标题</h1> <h2>h2标题</h2> <h3>h3标题</h3> <h4>h4标题</h4> <h5>h5标题</h5> <h6>h6标题</h6> <p>段落1</p> <p>段落2</p> <font>第一种<div>第一种DIV</div></font> <font>第二种<span>第二种SPAN</span></font> <ol type="1">有序列表 <li>序号1</li> <li>序号2</li> <li>序号3</li> </ol> <ul type="square">无序列表 <li>序号1</li> <li>序号2</li> <li>序号3</li> </ul> <a href="http://www.w3school.com.cn">This is a link</a> </body> </html>
时间: 2024-10-17 08:10:04