Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Complete Form for filling your Full Details. #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions example.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,38 @@ <h2>Tables</h2>
<td>Hertford</td>
</tr>
</table>


<h2>Your Detail Form</h2>
<form action="Server.php">
<fieldset>
<legend>Personal Details</legend>
First name:<br>
<input type="text" name="First Name" placeholder="Fname" value=""><br>
Last Name:<br>
<input type="text" name="Last Name" placeholder="LName" value=""><br>
<input type="submit" value="Submit"><br>
Gender:<br>
<input type="radio" value="Male">Male<br>
<input type="radio" value="Male" checked>Female<br>
<input type="radio" value="Male">Others<br>
Choose Options:<br>
<input type="checkbox" name="" id="">Option 1<br>
<input type="checkbox" name="Checkboxes" checked>Option 2<br>
<input type="checkbox" name="Checkboxes" id="">Option 3<br><br>
<label for="carSelect">Choose Your favourite Car:</label><br>
<select name="Cars" id="carSelect">
<option value="Mercedes">Mercedes</option>
<option value="Audi" selected>Audi</option>
<option value="Volvo">Volvo</option>
<option value="TATA">TATA</option>
<option value="Hyundai">Hyundai</option>
</select>

</fieldset>
</form>
<button>Submit Button</button>
<br>



Expand Down