HTML Forms page
The HTML form page is used for Notepad user input. The user Output is often sent to a web server for the process.
Forms page
<form action="/action_page.php">
<H1>Forms page:</H1>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" value=""><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" value=""><br><br>
<label for="lname">Mobile:</label><br>
<input type="text" id="Mobile" name="lname" value=""><br><br>
<label for="lname">Address:</label><br>
<input type="text" id="Address" name="lname" value=""><br><br>
<p>Choose your favorite language:</p>
<form>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">HTML</label><br>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">CSS</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">JavaScript</label>
</form>
<input type="submit" value="Submit">
</form>
0 Comments
Leave a Reply...