帮我用HTML写一个医生科室管理页面
时间: 2023-09-01 14:10:25 浏览: 93
医院医生介绍的网页设计
好的,以下是一个简单的医生科室管理页面的 HTML 代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>医生科室管理页面</title>
<meta charset="UTF-8">
</head>
<body>
<h1>医生科室管理页面</h1>
<form>
<label for="doctor-name">医生姓名:</label>
<input type="text" id="doctor-name" name="doctor-name"><br><br>
<label for="doctor-specialty">医生专业:</label>
<input type="text" id="doctor-specialty" name="doctor-specialty"><br><br>
<label for="doctor-phone">医生电话:</label>
<input type="tel" id="doctor-phone" name="doctor-phone"><br><br>
<label for="office-name">科室名称:</label>
<input type="text" id="office-name" name="office-name"><br><br>
<label for="office-room">科室房间号:</label>
<input type="text" id="office-room" name="office-room"><br><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
这个页面包含一个表单,用户可以在表单中输入医生的基本信息和科室信息,并且可以通过提交按钮将信息发送到服务器。你可以根据需求进行修改和完善。
阅读全文