Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.62 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en" class="h-100">
  3.  
  4. <head>
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     <link rel="stylesheet" href="css/bootstrap.min.css">
  8.     <title>Body mass index calculator</title>
  9. </head>
  10.  
  11. <body class="h-100">
  12.     <div class="container h-100">
  13.         <div class="row h-100 justify-content-center align-items-center">
  14.             <form>
  15.                 <div class="form-inline">
  16.                 <label class="mr-2">Height:</label>
  17.                 <input class="form-control" type="number" min="1" max="272" value="1">
  18.                 <label class="ml-2 mt-1">cm</label>
  19.             </div>
  20.             <div class="form-inline">
  21.                 <label class="mr-2 mt-2">Weight:</label>
  22.                 <input class="form-control mt-2" type="number" min="1" max="727" value="1">
  23.                 <label class="ml-2 mt-1">kg</label>
  24.                 </div>
  25.                 <button type="submit" class="btn btn-primary mt-2">Calculate</button>
  26.                 <div class="form-inline">
  27.                 <label class="mr-2">Body mass index:</label>
  28.                 <input class="form-control" readonly>
  29.                 </div>
  30.                 <div class="form-inline">
  31.                 <label class="mr-2 mt-2">Weight status:</label>
  32.                 <input class="form-control mt-2" readonly>
  33.             </div>
  34.                 </form>
  35.             </div>
  36.         </div>
  37.     <script src="js/jquery-3.3.1.slim.min.js"></script>
  38.     <script src="js/popper.min.js"></script>
  39.     <script src="js/bootstrap.min.js"></script>
  40. </body>
  41.  
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement