Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html data-theme="light">
- <head>
- <title>Kalkulator BMI</title>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
- <style>
- main.container {
- max-width: 400px;
- margin-top: 5vh;
- }
- article {
- text-align: center;
- }
- input[type="number"] {
- width: 100%;
- }
- </style>
- </head>
- <body>
- <main class="container">
- <article>
- <h1>Kalkulator BMI</h1>
- <label for="berat">Berat Badan (kg)</label>
- <input type="number" id="berat" placeholder="Masukkan berat Anda">
- <label for="tinggi">Tinggi Badan (cm)</label>
- <input type="number" id="tinggi" placeholder="Masukkan tinggi Anda">
- <button id="hitung" role="button">Hitung BMI</button>
- <hr> <h3 id="hasil"></h3>
- <p id="kategori"></p>
- </article>
- </main>
- <script src="bmi.js"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment