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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
| <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>中文测试</title> </head>
<body> <h1>一级标题</h1> <h2>二级标题</h2> <p>段落文字段落文字段落文字段落文字</p>
<br>
<p>多个段落之间,自动添加换行符,也可以利用 br 标签添加换行符,hr 用于添加水平线</p>
<hr>
<p> <strong>加粗</strong> <br> <del>删除线</del> <br> <ins>下划线</ins> <br> <em>斜体</em> </p>
<hr>
<img alt = "树" src = "./pic/tree.jpg" width = "144.1" height = "192" />
<hr>
<a href = "https://www.bilibili.com">跳转到哔哩哔哩</a>
<hr>
<a href = "./newHtml.html">a new Html</a>
<br>
<a href="./newHtml.html" target="_blank"> 新页打开 </a>
<hr>
<audio src = "./media/test.mp3" controls loop autoplay muted> 音频url-显示音频面板-循环播放-自动播放-静音 </audio>
<br>
<video src = "./media/test.mp4" controls loop autoplay muted> 视频 </video>
<br>
<ul> <li>列表1</li> <li>列表2</li> <li>列表3</li> </ul>
<hr>
<ol> <li>列表1</li> <li>列表2</li> <li>列表3</li> </ol>
<hr>
<dl> <dt>列表1</dt> <dd>列表1-1</dd> <dd>列表1-2</dd> <dt>列表2</dt> <dd>列表2-1</dd> </dl>
<hr><br>
<table border="1"> <thead> <tr> <th>姓名</th> <th>语文</th> <th>数学</th> <th>总分</th> </tr> </thead> <tbody> <tr> <td>张三</td> <td rowspan="2">90</td> <td colspan="2" rowspan="2">80</td> </tr> <tr> <td>李四</td> </tr> </tbody> <tfoot> <tr> <td>总结</td> <td colspan="2">全市第一</td> <td>190</td> </tr> </tfoot> </table>
<hr><br>
<input type="text" placeholder="文本"> <input type="password" placeholder="密码"> <input type="radio" placeholder="单选框"> <input type="checkbox" placeholder="多选框"> <input type="file" placeholder="上传文件">
<br><hr>
<p>性别</p> <input type="radio" name="性别" />男 <input type="radio" name="性别" />女 <input type="radio" name="性别" checked />武装直升机 <br><hr>
<input type="checkbox" />我同意遵守<a href="#">班规</a> <br /> <input type="checkbox" checked />我同意遵守<a href="#">校规</a> <br />
<br><hr>
<select> <option>选项 1</option> <option>选项 2</option> <option>选项 3</option> </select>
<br><hr>
<textarea>默认提示文字</textarea>
<br><hr>
<input type="radio" id="man"> <label for="man">男</label>
<label><input type="radio"> 女</label>
<br><hr>
<form action=""> 名字 <input type="text"> <br> 密码 <input type="password"> <br> <button type="submit">提交</button> <button type="reset">重置</button> <button type="button">普通按钮</button> </form>
<br><hr>
<div>这是一个div标签</div> <div>这是一个div标签</div> <span>这是一个span标签</span> <span>这是一个span标签</span> <p>111</p>
<br><hr>
<p>空格: , 小于号:&, 大于号:></p> </body> </html>
|