forms in html source code
hi I am sharing you the source code of forms in html. here we go! <!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"> <title>description of form in html</title> </head> <body> <form action="sql.php"> <fieldset> <legend>personal info </legend> <label for="fname">enter your first name</label> <br> <input type="text" name="fname" id="fname" required> <br> <label for="lname">enter your last name </label> <br> ...