crop_rotate
Run
<!DOCTYPE html> <html lang="en"> <head> <title>HTML Form Elements</title> </head> <body> <h1>HTML Form Elements</h1> <form> <fieldset> <legend>Personal Details:</legend> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname" value="Ahmed"><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname" value="Aly"><br><br> <input type="submit" value="Login"> </fieldset> </form> </body> </html>
HTML Form Elements
HTML Form Elements
Personal Details:
First name:
Last name: