编写一个html网页 要求如下:1.页面标题显示 用户注册页面 2.第一行h1标签展示用户注册 3.登录名使用文本框,要求正则规定只能输入a-z、0-9和下划线 4.密码要求最少输入6个字符 5.电子邮箱要求必须包含@和.,且.在@符号之后 6.性别单选,默认为男 7.头像选择文件,只能选择一个文件 8.爱好可多选 9.城市使用下拉框,可多选 10.提交按钮设置只读,内容为“同意右侧服务条款,请提交注册信息” 11.页面最右侧放置多行文本,内容随意
时间: 2024-03-29 18:39:14 浏览: 61
<!DOCTYPE html>
<html>
<head>
<title>用户注册页面</title>
</head>
<body>
<h1>用户注册</h1>
<form>
<label>登录名:</label>
<input type="text" name="username" pattern="[a-zA-Z0-9_]+" required><br><br>
<label>密码:</label>
<input type="password" name="password" minlength="6" required><br><br>
<label>电子邮箱:</label>
<input type="email" name="email" required><br><br>
<label>性别:</label>
<input type="radio" name="gender" value="male" checked>男
<input type="radio" name="gender" value="female">女<br><br>
<label>头像:</label>
<input type="file" name="avatar" accept="image/*" required><br><br>
<label>爱好:</label>
<input type="checkbox" name="hobby" value="reading">阅读
<input type="checkbox" name="hobby" value="sports">运动
<input type="checkbox" name="hobby" value="music">音乐<br><br>
<label>城市:</label>
<select name="city" multiple>
<option value="beijing">北京</option>
<option value="shanghai">上海</option>
<option value="guangzhou">广州</option>
</select><br><br>
<input type="submit" value="同意右侧服务条款,请提交注册信息" readonly><br><br>
</form>
<textarea rows="10" cols="30">这里是页面最右侧放置的多行文本,内容随意。</textarea>
</body>
</html>
阅读全文