html student basic program web designing
HTML FORM html form is a section of a document which contains controls such as text ,Password fields, checkboxes, radio buttons,submit t buton, menus etc. Student information basic program <!doctype html> <html> <head> <title> student form html</title> </head> <body> <h1>student basic information</h1> <form> <label for="firstname">First Name:</label><br> <input type="text" id="firstname" name="firstname"><br> <label for="lastname">last name:</label><br> <input type="text" id="lastname" name="firstname"><br> <label for ="address">Address:</label><br> <textarea></textarea><br> <label for="contact num">contact num:</label><br> <input type="text" id="contact num" name=...