How to know the benefits of easily Easy Learning Form create using HTML
“On this page you will find about the benefits of easily Easy Learning Form create using HTML. Form create were a major role in IT department and in the Computer professional . We will explain why easily Easy Learning Form create is important, how to Learning Form create, and how to learn it if you're unfamiliar with Form create using HTML. "
What is Form create using HTML and why is it important?
Form create using HTML used in go for easy IT department. Therefore, in everyday learning , Form create using HTML is added to the life help the go to IT profesional job. On this page we have explained in detail in writing what is the solution to How to learning Easy Form create using HTML using HTML.
Why is Form create using HTML impotent?
Do not worry if you have any doest not know to computer knowledge while getting job and go to IT field.It will be more effective if we use the tips mentioned. It will be more effective if we use the tips mentioned. The number of sizes to use in the notes is specifically given.
Form create using HTML and Reminders:
You mentioned similar tips on another page about Form create using HTML.
How to know the benefits of easily Easy Learning Form create using HTML:
How to create form in webpage using HTML
HTML form used to collect the user data and information that datas send to form from server. Server process request user Instruction, and replay to send in browser.
HTML form used to create <form> element user data input.
<form>
form element
</form>
<input> element display, depending on attribute type
Element <form> different types of ekement input such as,
"text" - text field sigle line
<input type="text">
"radio" - selecting option using text
<input type="radio">
"submit" - submit for form
<input type="submit">
"button" - click to view data
<input type="button">
Form Atrribute:
action Attribute :
ckick to send file on server
<form action="/action_page. php">
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
Method Atribute :
HTTP method submit form data
* method="post"
* method="get"
<form action="/action_page. php" method="get">
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
Target Atribute:
Response and received after submitting the form
<form action="/action_page. php" target="_blank">
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
_blank, _self, _parent, _top
Autocomplete Atribute :
Form should have complete on or off
<form action="/action_page. php" autocomplete="on">
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
Novalidate Atribute:
Input should be not validated submited
<form action="/action_page. php" nonvalidate>
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
Name Atribute :
Name of the form
rel Atribute:
relationship between current document and current resources.
Form Element:
<form>element can contain one or more following element.
* <input> - most used element depending on the type Atrribute.
<form action="/action_page. php">
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
* <lable>element - screen reader users
<lable>Atribute for, id this element mostly used checkbox, fadio button identified to click text purpose.
<form action="/action_page. php" method="get">
<lable for="fitname">firstname:</lable><br>
<input type="text" value="first name">
<lable for="lotname">lastname:</lable><br>
<input type="text" value="lastname">
<input type="submit" value="submit">
</form>
* <select> element drop-down list cab be select any option.
<form action="/action_page. php">
<lable for="car">chose the any car:</lable>
<select id="car" name="name">
<option value="">honda</option>
<option value="hero">hero</option>
<option value="foad">foad</option>
<option value="fiat">fiat</option>
</select>
<input type="submit" name="submit">
</form>
* size Attribute number of visible value
<form action="/action_page. php">
<lable for="car">chose the any car:</lable>
<select id="car" name="name" size="3">
<option value="">honda</option>
<option value="hero">hero</option>
<option value="foad">foad</option>
<option value="fiat">fiat</option>
</select>
<input type="submit" name="submit">
</form>
* use the multiple atribute allow select more then value
<form action="/action_page. php">
<lable for="car">chose the any car:</lable>
<select id="car" name="name" size="3" multiple>
<option value="">honda</option>
<option value="hero">hero</option>
<option value="foad">foad</option>
<option value="fiat">fiat</option>
</select>
<input type="submit" name="submit">
</form>
* <textarea>element used multi-line text enter the input value. Atribute specified "row" and "cols" atribute specified.
<form action="action_page. php">
<textarea name="message "rows="34" cols="23">enter the message hare</textarea>
<input type="submit">
<form>
* <button>Element click to view data
<form action="action_page. php">
<button type="button" onclick="alert('welcome to the first page')"></button>
</form>
Input type:
<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="number">
<input type="password">
<input type="radio">
<input type="range">
<input type="reset">
<input type="search">
<input type="submit">
<input type="tel">
<input type="text">
<input type="time">
<input type="url">
<input type="week">
Input Atrribute :
value Atribute
<input type="text" value="John">
read only
<input type="text" value="John" readonly>
disabled
<input type="text" value="John" disabled>
size
<input type="text" value="John" size="30">
maxlength
<input type="text" value="John" maxlength="40">
Min and max
<input type="text" value="John" min="3" max="4">
pattern
<input type="text" value="John" pattern="A-Z a-z">
Placeholder
<input type="text" value="John" placeholder="name">
required
<input type="text" value="John" required>
autofocus
<input type="text" value="John" autofocus>
Height and with
<input type="text" value="John" height="23" with="45">
List
<input type="text" value="John" list="browser">
<datalist id="browser">
<option value="chrome"></option>
<option value="opera"></option>
<option value="firewall"></option>
</datalist>
autocomplete
<form action="action_page. php" autocomplete="on"></form>
<html>
<body>
<p>please enter name and password:</p>
create a name And password box
<input type="text" value="name"><br>
<input type="text" value="password "><br>
create a submit button
<input type="submit" value="submit"><br>
create a checkbox
<input type="checkbox" value="name" id="male" name="gender">
<lable for="male">male</lable><br>
<input type="checkbox" value="name" id="female" name="gender">
<lable for="female ">female </lable><br>
create a radio button
<input type="radio" value="name" id ="male" name="gender">
<lable for="male">male</lable><br>
<input type="radio" value="name" id="female" name="gender">
<lable for="female ">female </lable><br>
create a select option
<p>please select Any name:</p>
<select>
<option>ram</option>
<option>ravi</option>
<option>mani</option>
<option>viji</option>
<option><newname</option>
</select>
</dody>
</form>
</html>
out put :
please enter name and password:
create a name And password boxcreate a submit button
create a checkbox
create a radio button
create a select option
please select Any name:
create a name And password box :
please enter name and password
create a submit button :
create a radio button:
create a select option:
please select Any name:
Create username and password fill form:
web page create mostly used the method username password create farmat. most the web page used this method also given to below programe format.
Example:
create a checkbox :
check box newly added on lable tag used.
Example:
<input type="checkbox" value="name" id="male" name="gender">
<lable for="male">male</lable><br>
<input type="checkbox" value="name" id="female" name="gender">
<lable for="female ">female </lable><br>
Awesome information about Form create using HTML was given above in this wonderful new blog of yours. It provided information on types, references, pictures, etc.
Comments
Post a Comment