1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
| <h1>一级标题</h1> <h2>二级标题</h2>
<p>这是一个段落。</p>
<a href="https://example.com" target="_blank">访问示例网站</a>
<img src="example.jpg" alt="示例图片" width="200" />
<ul> <li>苹果</li> <li>香蕉</li> </ul>
<ol> <li>第一步</li> <li>第二步</li> </ol>
<p>第一行<br />第二行</p>
<p><strong>加粗文本</strong> 和 <em>斜体文本</em></p>
<div style="background: #eee; padding: 10px;">这是一个区块容器</div> <p>这是一个 <span style="color: red;">红色词语</span> 的例子。</p>
<input type="text" placeholder="请输入用户名" />
<button onclick="alert('你点击了按钮')">点我</button>
<form action="/submit" method="post"> <label>用户名:<input type="text" name="username" /></label><br /> <label>密码:<input type="password" name="password" /></label><br /> <input type="submit" value="提交" /> </form>
<table border="1"> <thead> <tr> <th>姓名</th> <th>年龄</th> </tr> </thead> <tbody> <tr> <td>小明</td> <td>18</td> </tr> </tbody> </table>
<div id="main" class="container" title="鼠标悬停提示" style="color: blue;"> 使用了一些常用属性的div </div>
<input type="checkbox" checked /> 我已阅读协议<br /> <button disabled>禁用按钮</button>
|