From 9f9755746bc46b55e92a6e55c62c5465b0c42248 Mon Sep 17 00:00:00 2001 From: Chaitanyaputhran <21i07.chaitanya@sjec.ac.in> Date: Mon, 2 Oct 2023 08:57:52 +0530 Subject: [PATCH] added bmi calculator --- Projects/1-Beginner/BMI_Calculator.md | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Projects/1-Beginner/BMI_Calculator.md diff --git a/Projects/1-Beginner/BMI_Calculator.md b/Projects/1-Beginner/BMI_Calculator.md new file mode 100644 index 00000000..1a2a7841 --- /dev/null +++ b/Projects/1-Beginner/BMI_Calculator.md @@ -0,0 +1,33 @@ +# BMI Calculator + +**Tier:**1-Beginner + + BMI (Body Mass Index) Calculator app is designed to help users quickly and accurately calculate their BMI based on their gender, height, weight, and age. Users can input their data, choose their preferred units, and receive their BMI result along with an interpretation of what it means for their health. + + + +## User Stories + +- [ ] User can select their gender from a dropdown menu. +- [ ] User can enter their height in centimeters using a numeric input field. +- [ ] User can enter their weight in kilograms using a numeric input field. +- [ ] User can enter their age in years using a numeric input field. + +## Bonus features + +- [ ] User can drag height input. +- [ ] Change theme (light/dark) (play with css), play with css + +## Logic +- BMI is calculated as follows: BMI = weight (kg) / (height (m) * height (m)). +-Interpretation of the BMI result can include thresholds for different BMI categories (e.g., <18.5 Underweight, 18.5-24.9 Normal Weight, 25-29.9 Overweight, >=30 Obese). + + +## Useful links and resources + +- [Guide](https://www.freecodecamp.org/news/html-css-and-javascript-explained-for-beginners/) +- [Design Ideas](https://dribbble.com/tags/bmicalculator) + +## Example projects + +- N/A \ No newline at end of file