Advertisement
Guest User

Untitled

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