第二个html网页

<html>
<head>
<title>我的网站</title>
</head>
<body>
<h1>标题<h1>
<p>一些文字...</p>
<h2>子标题</h2>
<hr />
<p><i>一些文字...</i></p>
<p><small>更多文字...</small></p>
写一些文字<br />重起一行再写一些文字
<ul>
<li>一个列表项</li>
<li>另一个列表项</li>
</ul>
<hr />
<ol>
<li>第一个列表项</li>
<li>第二个列表项</li>
</ol>
</body>
</html>


第二个html网页_第1张图片

<i></i>  斜体

<small></small>小字体

<br />换行

<hr />水平线

<ul></ul> 无序列表

<ol></ol>有序列表

<li><li>列表项


你可能感兴趣的:(第二个html网页)