Tools, FAQ, Tutorials:
HTML 'input' Tag/Element
What Is an "input" Tag/Element?
✍: FYIcenter.com
An "input" element is an inline element that can used inside a "form"
element to define an input field. Here are basic rules about an "input" elements:
Here is a tutorial example of a form with 3 input fields:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Input Fields</title> </head> <body> <h4>Online Survey</h4> <form action="/survey.php"> <p style="background-color: #eeeeee; padding: 8px;"> Your name: <input/><br/> You like FYIcenter.com: <input type="checkbox"/><br/> <input type="submit" value="Submit"/> </p> </form> </body> </html>
If you save the above document as input_fields.html, and view it with Internet Explorer, you will see a form with an input text box, a checkbox, and a button as shown below:
⇒ Different Types of HTML 'input' Elements
2017-04-19, 1662🔥, 0💬
Popular Posts:
Tools, FAQ, Tutorials: JSON Validator JSON-XML Converter XML-JSON Converter JSON FAQ/Tutorials Pytho...
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...