<p>这是一个段落。</p>
这是一个段落。
<h1>一级标题</h1> <h2>二级标题</h2> <h3>三级标题</h3>
<img src="https://via.placeholder.com/150" alt="占位图片">
<ul> <li>项目一</li> <li>项目二</li> </ul>
<ol> <li>第一项</li> <li>第二项</li> </ol>
<table border="1">
<tr>
<th>姓名</th>
<th>年龄</th>
</tr>
<tr>
<td>张三</td>
<td>25</td>
</tr>
</table>
| 姓名 | 年龄 |
|---|---|
| 张三 | 25 |
<form> <label for="username">用户名:</label> <input type="text" id="username" name="username"> <input type="submit" value="提交"> </form>
<div style="background:#f0f0f0;padding:10px">这是一个块级容器</div> <span style="background:#f0f0f0">这是一个行内容器</span>
第一行<br>第二行
<button type="button">点击我</button>