用html制作一个包含学号和姓名的提问选号器
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>学号和姓名选择器</title>
</head>
<body>
<h1>请输入您的学号和姓名</h1>
<form>
<label for="student_id">学号:</label>
<input type="text" id="student_id" name="student_id" required><br><br>
<label for="name">姓名:</label>
<input type="text" id="name" name="name" required><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。