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

Optimize Your Hormonal Balance: Enclomiphene Citrate for Enhanced Wellness

Hormonal balance plays a pivotal role in overall well-being, influencing various aspects of health, from…

19 hours ago

Paul Kanes Explores the World of Canine Companionship through Dog Walking

Dog walking is an excellent way to maintain your furry friend's camaraderie and provides many…

22 hours ago

Top 5 Must-Have Features Every Mobile App Needs to Succeed

Introduction Businesses understand the diverse requirements of mobile applications, which provide a competitive advantage. There…

1 day ago

IoT Data Analytics: Ways to Gain Value from IoT Data

The Internet of Things (IoT) has recently changed the world. It links gadgets together and…

1 day ago

The Rise of NFTs: Exploring the Impact of Non-Fungible Tokens on the Digital Economy

NFTs, or Non-Fungible Tokens, are revolutionizing the digital economy. These unique digital assets, authenticated through…

2 days ago

What to Ask Before You Hand Your Laptop For Repairing

It is safe to say that if you are in need of a good laptop…

2 days ago