Guest User

Untitled

a guest
May 24th, 2021
283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.     <link rel="stylesheet" href="style.css" />
  8.     <title>Basic Form</title>
  9.   </head>
  10.   <body>
  11.     <main>
  12.       <h2>Enter your height in metres.</h2>
  13.       <input type="number" class="height" />
  14.       <h2>Enter your weight in kilograms.</h2>
  15.       <input type="number" class="weight" />
  16.       <h2>Enter your first name.</h2>
  17.       <input type="string" class="name" />
  18.       <div>
  19.         <button id="check" class="check">Submit</button>
  20.         <p class="message"></p>
  21.         <p class="message1"></p>
  22.       </div>
  23.     </main>
  24.     <script src="script.js"></script>
  25.   </body>
  26. </html>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment