制作一个关于体育锻炼的调查表单网页模板
时间: 2023-07-04 17:24:42 浏览: 90
以下是一个简单的关于体育锻炼的调查表单网页模板,您可以根据需要进行修改和完善:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>体育锻炼调查表单</title>
<style>
input[type="submit"] {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>体育锻炼调查表单</h1>
<form method="post" action="submit.php">
<label>您的姓名:</label><br>
<input type="text" name="name" required><br>
<label>您的性别:</label><br>
<input type="radio" name="gender" value="男">男
<input type="radio" name="gender" value="女">女<br>
<label>您的年龄:</label><br>
<input type="number" name="age" required><br>
<label>您的体重(kg):</label><br>
<input type="number" name="weight" required><br>
<label>您的身高(cm):</label><br>
<input type="number" name="height" required><br>
<label>您的平均每周锻炼时间:</label><br>
<select name="exercise_time">
<option value="0-1小时">0-1小时</option>
<option value="1-2小时">1-2小时</option>
<option value="2-3小时">2-3小时</option>
<option value="3-4小时">3-4小时</option>
<option value="4小时及以上">4小时及以上</option>
</select><br>
<label>您的锻炼方式:</label><br>
<input type="checkbox" name="exercise_type[]" value="跑步">跑步
<input type="checkbox" name="exercise_type[]" value="游泳">游泳
<input type="checkbox" name="exercise_type[]" value="健身">健身
<input type="checkbox" name="exercise_type[]" value="瑜伽">瑜伽<br>
<label>您的锻炼目的:</label><br>
<textarea name="exercise_goal" rows="5" cols="30"></textarea><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
注意:这是一个简单的网页模板,需要根据实际需要进行修改和完善,同时需要后端代码来处理提交的表单数据。
阅读全文