-
Notifications
You must be signed in to change notification settings - Fork 2
/
calculator.html
28 lines (28 loc) · 949 Bytes
/
calculator.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
27
28
<html>
<head>
<title> "Calorie Calculator" </title>
<link rel="icon" href="http://cdn.shopify.com/s/files/1/0185/5092/products/persons-0123.png?v=1369543551"/>
<link rel="stylesheet" type="text/css" href="calculator.css"/>
<script type="text/javascript" src="calculator.js"></script>
</head>
<body>
<div id="header">
<p> <strong> CALORIE CALCULATOR </strong> </p>
</div>
<dif id="calculator">
<form id="input">
<fieldset>
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="text" name="weight"> Weight (kg)<br>
<input type="text" name="height"> Height (cm)<br>
<input type="text" name="age"> Age (years)<br>
<input type="submit" value="Submit">
</fieldset>
</form>
</div>
<div id="result">
Calories needed:
</div>
</body>
</html>