{"id":3206,"date":"2023-02-23T11:50:25","date_gmt":"2023-02-23T11:50:25","guid":{"rendered":"https:\/\/www.apexclinic.com.tr\/?page_id=3206"},"modified":"2023-02-23T14:50:54","modified_gmt":"2023-02-23T14:50:54","slug":"vucut-kitle-indeksi-hesaplama-araci","status":"publish","type":"page","link":"https:\/\/www.apexclinic.com.tr\/en\/body-mass-index-calculation-tool\/","title":{"rendered":"Body Mass Index Calculator"},"content":{"rendered":"<div data-elementor-type=\"wp-page\" data-elementor-id=\"3206\" class=\"elementor elementor-3206\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-1d56999 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"1d56999\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;ekit_has_onepagescroll_dot&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c95235b\" data-id=\"c95235b\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-750e6f4 elementor-widget elementor-widget-html\" data-id=\"750e6f4\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"tr\">\r\n<head>\r\n\t<meta charset=\"UTF-8\">\r\n\t<title>Body Mass Index Calculator<\/title>\r\n\t<style>\r\n\t\tbody {\r\n\t\t\tfont-family: sans-serif;\r\n\t\t\tbackground-color: #f5f5f5;\r\n\t\t}\r\n\r\n\t\t.container {\r\n\t\t\tmax-width: 600px;\r\n\t\t\tmargin: 0 auto;\r\n\t\t\tpadding: 20px;\r\n\t\t\tbackground-color: #fff;\r\n\t\t\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\r\n\t\t}\r\n\r\n\t\th1 {\r\n\t\t\tfont-size: 24px;\r\n\t\t\tfont-weight: bold;\r\n\t\t\ttext-align: center;\r\n\t\t\tmargin-top: 0;\r\n\t\t\tmargin-bottom: 20px;\r\n\t\t}\r\n\r\n\t\tform {\r\n\t\t\tdisplay: flex;\r\n\t\t\tflex-direction: column;\r\n\t\t}\r\n\r\n\t\tlabel {\r\n\t\t\tfont-weight: bold;\r\n\t\t\tmargin-bottom: 10px;\r\n\t\t}\r\n\r\n\t\tinput {\r\n\t\t\tpadding: 10px;\r\n\t\t\tborder: 1px solid #ccc;\r\n\t\t\tborder-radius: 5px;\r\n\t\t\tmargin-bottom: 20px;\r\n\t\t\tfont-size: 16px;\r\n\t\t}\r\n\r\n\t\tbutton {\r\n\t\t\tbackground-color: #007bff;\r\n\t\t\tcolor: #fff;\r\n\t\t\tpadding: 10px;\r\n\t\t\tborder: none;\r\n\t\t\tborder-radius: 5px;\r\n\t\t\tfont-size: 16px;\r\n\t\t\tcursor: pointer;\r\n\t\t}\r\n\r\n\t\t.result {\r\n\t\t\tfont-size: 24px;\r\n\t\t\tfont-weight: bold;\r\n\t\t\ttext-align: center;\r\n\t\t\tmargin-top: 20px;\r\n\t\t}\r\n\r\n\t\t.error {\r\n\t\t\tcolor: red;\r\n\t\t\tmargin-top: 10px;\r\n\t\t}\r\n\t<\/style>\r\n<\/head>\r\n<body>\r\n\t<div class=\"container\">\r\n\t\t<h1>Body Mass Index Calculator<\/h1>\r\n\t\t<form onsubmit=\"return hesapla()\" action=\"\">\r\n\t\t\t<label for=\"kilo\">Weight (kg)<\/label>\r\n\t\t\t<input type=\"number\" id=\"kilo\" required>\r\n\r\n\t\t\t<label for=\"boy\">Height (cm)<\/label>\r\n\t\t\t<input type=\"number\" id=\"boy\" required>\r\n\r\n\t\t\t<button type=\"submit\">Calculate<\/button>\r\n\t\t<input type=\"hidden\" name=\"trp-form-language\" value=\"en\"\/><\/form>\r\n\r\n\t\t<div id=\"sonuc\" class=\"result\"><\/div>\r\n\r\n\t\t<div id=\"hata\" class=\"error\"><\/div>\r\n\r\n\t\t<script>\r\n\t\t\r\n\t\t\tfunction hesapla() {\r\n\t\t\t    document.getElementById(\"sonuc\").innerHTML = \"\";\r\ndocument.getElementById(\"hata\").innerHTML = \"\";\r\n\t\t\t\tvar kilo = document.getElementById(\"kilo\").value;\r\n\t\t\t\tvar boy = document.getElementById(\"boy\").value;\r\n\r\n\t\t\t\tif (kilo <= 0 || boy <= 0) {\r\n\t\t\t\t\tdocument.getElementById(\"sonuc\").innerHTML = \"\";\r\n\t\t\t\t\tdocument.getElementById(\"hata\").innerHTML = \"Kilo ve boy de\u011ferleri pozitif olmal\u0131d\u0131r.\";\r\n\t\t\t\t\treturn false;\r\n\t\t\t\t}\r\n\r\n\t\t\t\tvar boyMetre = boy \/ 100;\r\n\t\t\t\tvar vki = kilo \/ (boyMetre * boyMetre);\r\n\r\n\t\t\t\tif (vki < 18.5) {\r\n\t\t\t\t\tdocument.getElementById(\"sonuc\").innerHTML = \"VK\u0130: \" + vki.toFixed(2) + \" (Zay\u0131f)\";\r\n\t\t\t\t} else if (vki < 25) {\r\n\t\t\t\t\tdocument.getElementById(\"sonuc\").innerHTML = \"VK\u0130: \" + vki.toFixed(\r\n) + \" (Normal)\";\r\n} else if (vki < 30) {\r\ndocument.getElementById(\"sonuc\").innerHTML = \"VK\u0130: \" + vki.toFixed(2) + \" (Fazla Kilolu)\";\r\n} else if (vki < 35) {\r\ndocument.getElementById(\"sonuc\").innerHTML = \"VK\u0130: \" + vki.toFixed(2) + \" (Obez)\";\r\n} else {\r\ndocument.getElementById(\"sonuc\").innerHTML = \"VK\u0130: \" + vki.toFixed(2) + \" (A\u015f\u0131r\u0131 Obez)\";\r\ndocument.getElementById(\"hata\").innerHTML = \"Obezite cerrahisi i\u00e7in uygunsunuz. En do\u011fru i\u015flem i\u00e7in bizimle ileti\u015fime ge\u00e7in.\";\r\n}\r\n\treturn false;\r\n\t\t}\r\n\t<\/script>\r\n<\/div>\r\n<\/body>\r\n<\/html>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-d8eb4a6 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"d8eb4a6\" data-element_type=\"section\" data-settings=\"{&quot;ekit_has_onepagescroll_dot&quot;:&quot;yes&quot;}\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3ebec1c\" data-id=\"3ebec1c\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-d226df7 elementor-widget elementor-widget-text-editor\" data-id=\"d226df7\" data-element_type=\"widget\" data-settings=\"{&quot;ekit_we_effect_on&quot;:&quot;none&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>Body mass index (BMI) is a method that measures the ratio of body weight to height. <strong>Body mass index calculator<\/strong>It is a very important tool for people to lead a healthy life. BMI is an important measure used to determine obesity, heart disease, diabetes and many other diseases. In this article, we&#039;ll cover how BMI is calculated and why it&#039;s important for a healthy life.<\/p><h3>What is BMI?<\/h3><p><strong>Body mass index<\/strong> (BMI) measures the ratio of a person&#039;s body weight to their height. BMI is a measure used to determine whether a person is normal weight, overweight, or obese. To calculate BMI, a person&#039;s weight (kg) is divided by their height (m) squared.<\/p><h3>How to Use BMI Calculator?<\/h3><p><strong>Body Mass Index calculation<\/strong>calculates the BMI value when the person&#039;s height and weight are entered. The BMI calculator tool can be found on many websites and mobile apps. To calculate BMI, it is important to enter a person&#039;s height and weight correctly. BMI values are interpreted as:<\/p><ul><li>Values below 18.5: Weak<\/li><li>Values between 18.5-24.9: Normal<\/li><li>Values 25-29.9: Overweight<\/li><li>30 and above: Obese<\/li><\/ul><h3>Why is BMI Important?<\/h3><p>BMI is an important tool in determining a person&#039;s health status. People with a high BMI are at risk for heart disease, high blood pressure, diabetes, and many other diseases. BMI is very important for a healthy life because maintaining a healthy BMI reduces the risk of these diseases.<\/p><p>Body mass index (BMI) is an important tool in determining a person&#039;s health status. People with a high BMI are at risk for heart disease, high blood pressure, diabetes, and many other diseases. Therefore, having a BMI value in the normal range is very important for maintaining a healthy life.<\/p><p>A high BMI increases the risk of obesity. Obesity is an increasing health problem worldwide. Obesity causes inflammation and insulin resistance in the body, increasing the risk of heart diseases, diabetes, liver diseases, sleep apnea, depression, cancer and many other diseases. Obesity also negatively affects quality of life and longevity.<\/p><p>In order for the BMI value to be within the normal range, it is necessary to exercise regularly and follow a healthy eating plan. Exercise and a healthy diet help control body weight and keep BMI in a healthy range. People with a BMI in the normal range increase their chances of living a healthy life.<\/p><p>A BMI value in the normal range is important not only for physical health but also for psychological health. A high BMI value can lower a person&#039;s self-confidence and self-esteem. Therefore, maintaining a healthy BMI can increase a person&#039;s self-confidence.<\/p><p>BMI is an important criterion for maintaining a healthy life. Having a BMI value in the normal range reduces the risk of heart diseases, high blood pressure, diabetes and many other diseases. In order for the BMI value to be within the normal range, it is necessary to exercise regularly and follow a healthy eating plan. In addition, keeping the BMI value under control is also important for psychological health by increasing one&#039;s self-confidence and self-esteem. Controlling the BMI value is an important step that can be taken to maintain a healthy life.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>","protected":false},"excerpt":{"rendered":"<p>V\u00fccut Kitle \u0130ndeksi Hesaplama V\u00fccut Kitle \u0130ndeksi Hesaplama Kilo (kg) Boy (cm) Hesapla V\u00fccut kitle indeksi (VK\u0130), v\u00fccut a\u011f\u0131rl\u0131\u011f\u0131n\u0131n boy ile orant\u0131s\u0131n\u0131 \u00f6l\u00e7en bir y\u00f6ntemdir. V\u00fccut kitle indeksi hesaplama arac\u0131, insanlar\u0131n sa\u011fl\u0131kl\u0131 bir ya\u015fam s\u00fcrd\u00fcrmeleri i\u00e7in \u00e7ok \u00f6nemli bir ara\u00e7t\u0131r. VK\u0130, obezite, kalp hastal\u0131\u011f\u0131, diyabet ve di\u011fer pek \u00e7ok hastal\u0131\u011f\u0131n belirlenmesinde kullan\u0131lan \u00f6nemli bir \u00f6l\u00e7\u00fctt\u00fcr. [&hellip;]<\/p>","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_lmt_disableupdate":"","_lmt_disable":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_joinchat":[],"footnotes":""},"class_list":["post-3206","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/pages\/3206"}],"collection":[{"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/comments?post=3206"}],"version-history":[{"count":22,"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/pages\/3206\/revisions"}],"predecessor-version":[{"id":3238,"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/pages\/3206\/revisions\/3238"}],"wp:attachment":[{"href":"https:\/\/www.apexclinic.com.tr\/en\/wp-json\/wp\/v2\/media?parent=3206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}