Back Code Run <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h3>HTML Form</h3> <form> <label for="firstName">First name</label> <br> <input type="text" name="" id="firstName" placeholder="Enter your first name"> <br> <label for="lastName">Last name</label> <br> <input type="text" name="" id="lastName" placeholder="Enter your last name"> <br><br> <input type="submit" value="Submit"> </form> </body> </html> Result