-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calories.html
26 lines (26 loc) · 968 Bytes
/
Calories.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calories Burned by Activity Calculator</title>
<link rel="stylesheet" href="tools_ele.css">
</head>
<body>
<div class="container">
<h2>Calories Burned by Activity Calculator</h2>
<label for="activity">Activity:</label>
<select id="activity">
<option value="walking">Walking</option>
<option value="running">Running</option>
<option value="cycling">Cycling</option>
<!-- Add more activity options as needed -->
</select>
<label for="duration">Duration (minutes):</label>
<input type="number" placeholder="Enter duration in minutes" id="duration">
<button onclick="calculateCaloriesBurned()">Calculate</button>
<div id="result"></div>
</div>
<script src="cal.js"></script>
</body>
</html>