HTML界面设置

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title></title>

</head>

<body>

<table border="1" width="400" height="100">

<thead>

<tr align="center" bgcolor="">

<td colspan="2">用户注册</td>

</tr>

</thead>

<tr bgcolor="">

<td align="right"><form action=""></form>

<label for="edit">用户名</label>

</td>

<td>

<input type="" name="用户名" />

</td>

</tr>

<tr bgcolor="">

<td align="right"><form action=""></form>

<label for="edit">密码</label>

</td>

<td>

<input type="" name="密码" />

</td>

</tr>

<tr bgcolor="">

<td align="right"><form action=""></form>

<label for="edit">性别</label>

</td>

<td>

<!-- 选择一个选项 -->

<input type="radio" name="性别" value="男"/>男

<input type="radio" name="性别" value="女"/>女

</td>

<tr bgcolor="">

<td align="right"><form action=""></form>

<label for="edit">爱好</label>

</td>

<!-- 选择选项 可多选 -->

<td bgcolor="">

<input type="checkbox" name="爱好" value="写作"/>写作

<input type="checkbox" name="爱好" value="听音乐"/>听音乐

<input type="checkbox" name="爱好" value="体育"/>体育

</td>

</tr>

<tr bgcolor="">

<td align="right"><form action=""></form>

<label for="edit">省份</label>

</td>

<td>

<!-- 选择一个选项以列表方式 -->

<select name="省份">

<option> </option>

<option>云南省</option>

<option>广西省</option>

<option>广西省</option

</select>

</td>

</tr>

<tr align="right" bgcolor="">

<td width="50%"><form action=""></form>

<label for="edit">自我介绍</label>

</td>

<td align="left">

<textarea name="" id=""cols="40" rows="10">

</textarea>

</tr>

<!-- 提交重置选项设置 -->

<tr align="center" bgcolor="">

<td colspan="2">

<input type="submit" name="" id="" >

<input type="reset" name="" id="" >

</td>

</tr>

</table>

</body>

相关推荐
MY_TEUCK32 分钟前
【Java 后端】SpringBoot 登录认证与会话跟踪实战(JWT + Filter/Interceptor)
java·开发语言·spring boot
飞Link32 分钟前
大模型长文本的“救命稻草”:深度解析 TurboQuant 与 KV Cache 压缩技术
算法
镜宇秋霖丶34 分钟前
2026.5.6@霖宇博客制作中遇见的问题
前端·javascript·vue.js
今天长肉了吗42 分钟前
银行风控项目踩坑实录:指标跑了6小时,风险评分全挂了
java
随读手机1 小时前
多式联运信息交互平台完整方案(2026版)
java·ai·eclipse·云计算·区块链
郝学胜-神的一滴1 小时前
深度学习优化核心:梯度下降与网络训练全解析
数据结构·人工智能·python·深度学习·算法·机器学习
Je1lyfish2 小时前
CMU15-445 (2025 Fall/2026 Spring) Project#3 - QueryExecution
linux·c语言·开发语言·数据结构·数据库·c++·算法
许彰午2 小时前
03-二叉树——从递归遍历到非递归实现
java·算法
小李子呢02112 小时前
前端八股Vue---Vue-router路由管理器
前端·javascript·vue.js
nj01282 小时前
Spring 循环依赖详解:三级缓存、早期引用、AOP 代理与懒加载
java·spring·缓存