-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththisBmi.html
67 lines (50 loc) · 2.59 KB
/
thisBmi.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en-US">
<head>
<link rel="stylesheet" type="text/css" href="myStyle.css"/>
<link rel="" type="" href="#"/>
<title></title>
<meta name="viewport" decription="width=device-width initial-scale=1" />
<meta name="#" decription="#" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="wrapSite">
<header id="siteHeader" class="siteHead">
<h1>CALCULATE YOUR BODY MASS INDEX</h1>
<p> The Fight Against Obesity Starts Here</p>
</header>
<div id="wrapForm">
<!-- <form id="myForm" name="bmiForm">
<input type="number" name="weight" placeholder="Enter Your Weight in Kg" id="#" value=" " size=40 required autocomplete="yes"/>
<input type="number" name="height" placeholder="Enter Your Height in cm" id="#" value=" " size=40 required autocomplete="yes"/>
<input type="submit" name="bmiCalculate" placeholder="#" id="#" value="Calculate My BMI"/><br>
<div id="myResult"></div><br>
<div id="moreTips"></div><br>
</form> -->
<form name="bmiForm" class="container center">
<input type="number" name="weight" size="20" placeholder="Enter Your Weight in Kg" required autocomplte="yes"/>
<input type="number" name="height" size="20" placeholder="Enter Your Height in cm" required autocomplte="yes"/>
<input type="button" value="Calculate BMI" onClick="calculateBmi()"><br/><br/><br/>
Your BMI: <div id="result"><br></div> <!--<input type="text" name="bmi" size="20" placeholder="Your BMI goes in here"/> -->
This Means: <input type="text" name="meaning" size="20"><br/><br/>
<input type="reset" value="Reset" />
</form>
<!-- Close Form Wrapper-->
</div><!-- Close Site Wrapper-->
</div>
<div class="socialTags">
<a href="#"><span class="fa-stack fa-lg"><i class="fa fa-circle-thin fa-stack-2x"></i><i class="fa fa-facebook fa-stack-1x"></i></span>  Facebook</a> 
<a href="#"><span class="fa-stack fa-lg"><i class="fa fa-circle-thin fa-stack-2x"></i><i class="fa fa-twitter fa-stack-1x"></i></span>Twitter</a>  
<a href="#"><span class="fa-stack fa-lg"><i class="fa fa-circle-thin fa-stack-2x"></i><i class="fa fa-camera fa-stack-1x"></i></span>Instagram</a>
</div>
<div class="thisFoot">
</div>
<footer>
Contact Us | About Us | Follow Us
</footer>
<script src="myScript.js"></script>
<script src="http://code.jquerry.com/latest-min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>