Add files via upload

This commit is contained in:
yezhengcool
2024-01-19 13:11:38 +08:00
committed by GitHub
parent bc02191275
commit fb15c18535

76
index.html Normal file
View File

@@ -0,0 +1,76 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我的地盘</title>
</head>
<body>
<h1>中国移动</h1>
<span style="color: red">中国联通</span><span style="color: mediumblue">中国联通</span>
<a href="http://www.10086.cn/index/sh/index_210_210.html" target="_blank">上海移动</a>
<a href="/get/news">查看更多</a>
<img style="height: 300px;width: 500px" src="https://img0.baidu.com/it/u=3626299047,1080739560&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500" />
<img style="height: 300px;width: 500px" src="/static/1.png" />
<img style="height: 15%;width: 20%" src="/static/1.png" />
<h1>运营商列表</h1>
<ul>
<li>中国移动</li>
<li>中国联动</li>
<li>中国电信</li>
</ul>
<h1>运营商列表</h1>
<ol>
<li>中国移动</li>
<li>中国联动</li>
<li>中国电信</li>
</ol>
<h1>数据表格</h1>
<table border="1">
<thead>
<tr><th>ID</th><th>姓名</th><th>年龄</th></tr>
</thead>
<tbody>
<tr><td>18</td><td>张三</td><td>19</td></tr>
<tr><td>20</td><td>李四</td><td>19</td></tr>
<tr><td>19</td><td>王五</td><td>19</td></tr>
</tbody>
</table>
<h1>输入内容</h1>
<input type="text" />
<input type="password" />
<input type="file" />
<input type="radio" name="n1" />
<input type="radio" name="n1" />
<input type="checkbox" />篮球
<input type="checkbox" />足球
<input type="checkbox" />棒球
<input type="checkbox" />乒乓球
<input type="button" value="提交" />
<input type="submit" value="提交" />
<input type="reset" value="重置" />
<select>
<option>北京</option>
<option>上海</option>
<option>深圳</option>
</select>
<select multiple>
<option>北京</option>
<option>上海</option>
<option>深圳</option>
</select>
<br />
<h1>多行文本</h1>
<textarea></textarea>
<textarea rows="3"></textarea>
</body>
</html>