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