TUTORIAL HTML : web forms
Sample of the pdf document :
HTML web forms are a composition of
buttons, checkboxes, and text input fields embedded inside of HTML documents
with one goal in mind: to capture user input. By doing things such as providing
fields for user data such as names, phone number, and email addresses, web
forms give users the opportunity to interact directly with a webpage.
HTML forms are placed on a web page
using the <form> tag. This tag should encapsulate a series of other form
elements, identifying them as a single cohesive web form.
HTML Form Element:
<formg name="myWebForm"
action="myServerSideScript.php" method="post">
<input
type="checkbox" /> Checkbox 1<br />
<input
type="text" /> Text Field 1<br />
<input
type="submit" value="SUBMIT" />
</form>
HTML Web Form:
Checkbox 1
Text Field 1
Text Field 1
Click here for free Download / PDF

0 commentaires: