Categories: Html

HTML Forms

Share

By using html forms we get input data from the user. For example regstration form, contact us feedback etc.

Html forms are enclosed between form element like below:
<form>
</form>

There are numerous form fields that can be use in forms:

-Text field
-Text area
-Checkbox
-Radio buttons
-Select box
-File field
-Button
-Image button
-Submit button

GET and POST:
Form method can be two types i.e. GET and POST.
When
we use GET then all value submitted from the form will be visible to the URL. But when we use POST then form fields are packed into the body and send to the server.

<form method=”POST” action=”index.html”>

</form>

A sample form using fields:

<form method="POST" action="index.html">
 <input type="text" name="name" /><br />
 <textarea name="address"></textarea><br />
 <input type="checkbox" name="agreement" value="1" /><br />
 <input type="radio" name="player" value="1" /><br />
 <select name="gender">
 <option value="M">Male</option>
 <option value="F">Female</option>
 </select><br />
 <input type="file" name="attachment" /><br />
 <input type="button" name="click" value="Click" /><br />
 <input type="image" name="img" src="images/submit.jpg" /><br />
 <input type="submit" name="submit" value="Save" /><br />
</form>
Published by
Namaste UI
Tags: htmlweb

Recent Posts

Chasing Legends: Legendary Moments in Online Gaming

In the vast digital landscapes of online gaming, legends are born and moments are etched…

13 hours ago

Virtual Thrills: Adventures in Online Gaming

In the ever-evolving landscape of entertainment, online gaming stands out as a realm where imagination…

13 hours ago

Rise to Prominence: Climbing the Ranks in Online Gaming

In the fast-paced world of online gaming, the pursuit of excellence is a journey marked…

14 hours ago

Diversifying your portfolio with short term investment

Understanding the value of investment is an essential component of financial planning. Investing not only…

14 hours ago

Ad ROI 101: Making The Most Out of Your Ad Investment

In today's cutthroat business world, where every cent matters, tracking how well your ad campaigns…

18 hours ago

6 Ways to Integrate Salesforce with Better Customer Relationship Management

Customer relationship management (CRM) is the process used to ensure that your customers’ experience is…

23 hours ago