Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="stylesheet" href="style.css" />
- <title>Basic Form</title>
- </head>
- <body>
- <main>
- <h2>Enter your height in metres.</h2>
- <input type="number" class="height" />
- <h2>Enter your weight in kilograms.</h2>
- <input type="number" class="weight" />
- <h2>Enter your first name.</h2>
- <input type="string" class="name" />
- <div>
- <button id="check" class="check">Submit</button>
- <p class="message"></p>
- <p class="message1"></p>
- </div>
- </main>
- <script src="script.js"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment