12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!-- 基础标签 -->
- <h1>111</h1>
- <p>2222</p>
- <!-- src=""地址 alt图片加载不出来 显示alt中的内容
- 绝对地址 固定不变
- 相对地址 上一层目录 ../
- 下一级目录 /
- -->
- <img src="images/img01.jpeg" alt="xx">
- <a href="http://www.baidu.com" target="_blank">百度</a>
- <ul>
- <li>111</li>
- <li>222</li>
- <li>333</li>
- </ul>
- <!-- 布局 区块 -->
- <!-- span 选中文本 -->
- <div>
- hahahahjdf<span style="color:red">收据</span>发给技术的<i>回访</i>跟进<strong>都会</strong>发 hahahahhaha
- </div>
- <!-- 表格 -->
- <table border="1">
- <tr>
- <td>111</td>
- <td>222</td>
- </tr>
- <tr>
- <td>111</td>
- <td>222</td>
- </tr>
- </table>
- <!-- 表单元素 -->
- <form>
- <!-- 文本框 -->
- <input type="text">
- <!-- 密码框 -->
- <input type="password">
- <!-- 单选框 -->
- <input type="radio" name="sex">男
- <input type="radio" name="sex">女
- <!-- 复选框 -->
- <input type="checkbox" name="hobby">吃饭
- <input type="checkbox" name="hobby">睡觉
- <input type="checkbox" name="hobby">敲代码
- <!-- 下拉框 -->
- <select>
- <option value="">黑大</option>
- <option value="">理工</option>
- <option value="">黑工程</option>
- </select>
- <!-- 文本域 -->
- <textarea ></textarea>
- <button>click</button>
- <input type="submit">
- </form>
-
- </body>
- </html>
|