<html> <title>PHP中文网</title> <body> <pre> <b>粗体</b> <big>大字体</big> <em>强调字</em> <i>斜体</i> <small>小字体</small> <strong>加重语气</strong> </pre> </body> </html>
2018-02-190个赞
<html> <title>PHP中文网</title> <body> <h1 align="center">This is heading 1</h1> <h1 style="font-family:verdana">A heading</h1> <p style="font-family:arial;color:red;font-size:20px;">A paragraph.</p> <p>上面的标题在页面中进行了居中排列,上面的标题在页面中进行了居中排列,上面的标题在页面中进行了居中排列,上面的标题在页面中进行了居中排列,</p> </body> </html>
2018-02-191个赞
<!DOCTYPE html> <html> <body> <!--这是一段注释,注释不会在浏览器中显示。--> <p>这是一段普通文字。</p> </body> </html>
<!DOCTYPE html> <html> <body> <!--这是一段注释,注释不会在浏览器中显示。--> <p style="color:red;align:center">这是一段普通文字。</p> </body> </html>
2018-02-190个赞
<html> <head> <meta charset="UTF-8"> <title>最好的PHP中文网</title> </head> <body> <p>PHP中文网</p> <a href="http://www.php.cn"><img src="图01.jpg"</a> <a href="css2.html">链接</a> </body>
2018-02-200个赞
<html> <head> <title>PHP中文网</title> </head> <body> <a href="http://www.php.cn" target="_blank">PHP中文网中国最大的PHP基地</a> </body> </html>
2018-02-210个赞
<html> <body> <a href="http://www.baidu.com" title="跳转到百度搜索">百度中文搜索</a> <p>跳转到百度。</p> </body> </html>
2018-02-210个赞
<ol> <li>lalalaalalal</li> <li>lalalaalalal</li> <li>lalalaalalal</li> </ol>
2018-02-220个赞