1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>BMI</title> <link rel="stylesheet" href="bmi.css" /> <script src="bmi.js"></script> </head> <body> <div class="web-app"> 体重(kg) <input type="text" id="weight" /><br /> 身長(cm) <input type="text" id="height" /><br /> <button onclick="calc_bmi()">計算</button><br /> BMI <input type="text" id="bmi" readonly /><br /> 標準体重(kg) <input type="text" id="std" readonly /><br /> </div> </body> </html>