-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #734 from Veeshavanachu/patch-7
Updated the readme.md
- Loading branch information
Showing
1 changed file
with
20 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,20 @@ | ||
<h1>BMI Calculator using JS</h1> | ||
|
||
<p>Calculates the Body Mass Index of a person, provided with a BMI chart</p> | ||
|
||
### Use of the Project: | ||
|
||
<p>User enters values - height in cm and weight in kg and clicks on "calculate" button to obtain BMI value and compares the value in the given BMI chart.</p> | ||
|
||
<h3>Used Technologies</h3> | ||
<ul> | ||
<li>HTML5</li> | ||
<li>CSS3</li> | ||
<li>JavaScript</li> | ||
</ul> | ||
|
||
#### Steps to Use: | ||
|
||
--- | ||
|
||
- Download or clone the repository | ||
|
||
``` | ||
git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects.git | ||
``` | ||
|
||
- Go to the directory | ||
- Run the index.html file | ||
- Start Calculatings! | ||
|
||
<h3> Demo </h3> | ||
<img src="https://github.com/ayushseth07/Web-dev-mini-projects/blob/patch/BMI%20Calculator%20(JS)/snap.PNG"/> | ||
# BMI Calculator | ||
|
||
## Overview: | ||
The **BMI Calculator** allows users to easily calculate their Body Mass Index (BMI) based on their height and weight. The result is compared against the standard BMI chart to help users assess their health status. | ||
|
||
## Features: | ||
- User inputs their **height** in centimeters and **weight** in kilograms. | ||
- A simple click on the **"Calculate"** button computes the BMI value. | ||
- The BMI value is compared to a **BMI chart**, indicating whether the user is underweight, normal weight, overweight, or obese. | ||
|
||
## Technologies Used: | ||
- **HTML5**: For structuring the webpage. | ||
- **CSS3**: For styling the page. | ||
- **JavaScript**: For implementing the BMI calculation logic. | ||
|
||
## How to Use: | ||
1. **Clone the Repository**: | ||
Download or clone the repository using Git: | ||
```bash | ||
git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects.git |