SAI YEWALE

Generation

typingsSat, 26 Nov 2022

Write javascript code to create the webpage using different form elements .(design the student registration form)

<!DOCTYPE html> <html> <body> <h2>HTML Forms</h2> <form> First name:<br> <input type="text" name="firstname"><br> Last name:<br> <input type="text" name="lastname"> </form> <form action="/action_page.php"> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname"><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname"><br><br> <input type="submit" value="Submit"> </form> <form action="/action_page.php"> <label for="country">Choose a country:</label><br> <select id="country" name="country"> <option value="australia">Australia</option> <option

Questions about programming?Chat with your personal AI assistant