用表格制作的个人信息填写

Original 2019-03-09 15:33:38 650
abstract:<head> <meta charset="UTF-8"> <title>我的信息</title> <style type="text/css"> table{ border="1";width: 300px;height:&nb
<head>
	<meta charset="UTF-8">
	<title>我的信息</title>
	<style type="text/css">
		table{ border="1";width: 300px;height: 400px;margin:0 auto;margin-top: 100px;}
		tr td{border: 1px solid #ccc;}
		textarea{width: 200px;height: 50px;}
	</style>
</head>
<body>
	<table>
				<th>我的信息</th>
				<tr>
					<td>姓名:<input type="text" name=""></td>
				</tr>
				<tr>
					<td>年龄:<input type="text" name=""></td>
				</tr>
				<tr>
					<td>性别:<input type="radio" name="sex" value="0">男
							<input type="radio" name="sex" value="1">女
					</td>
				</tr>
				<tr>
					<td>爱好:<input type="checkbox" name="">旅游
						<input type="checkbox" name="">美食
						<input type="checkbox" name="">看电影
						<input type="checkbox" name="">打游戏
					</td>
				</tr>
				<tr>
					<td>
						想做的事情:<select>
							<option value="">旅游</option>
							<option value="">吃火锅</option>
							<option value="">游泳</option>
							<option value="">打游戏</option>
						</select>
					</td>
				</tr>
				<tr>
					<td>
						自我介绍:<textarea></textarea>
					</td>
				</tr>
	</table>
</body>
</html>

学习到了一些常用的html标签,需要记忆的东西还是挺多的

Correcting teacher:韦小宝Correction time:2019-03-09 16:36:31
Teacher's summary:一开始可以先把一些常用的标签好好去练习记忆 比如表格 列表 div span p img a等等 等这些使用的也都熟练了以后再去记忆一些其他的

Release Notes

Popular Entries