
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Listing down various options for input values in HTML5
The HTML <datalist> tag specifies set of options for <input> element. You can try to run the following code to list options for input values in HTML5 −
Example
<!DOCTYPE html> <html> <head> <title>HTML Datalist Tag</title> </head> <body> <input list = "tutorials" /> <datalist id = "tutorials"> <option value = "Java"> <option value = "ASP"> <option value = "PHP"> <option value = "Ruby"> <option value = "jQuery"> </datalist> <p>Try to add any of the tutorial name mentioned above.</p> </body> </html>
- Related Articles
- Style options for the HTML5 Date picker
- Autocomplete text input for HTML5?
- Are there any style options for the HTML5 Date picker?
- HTML5 input type range for vertical orientation possible in Firefox?
- Input type URL in HTML5
- How to define a form for user input using HTML5?
- HTML5 Input type “number” in Firefox
- What are input elements in HTML5
- How to define a label for an input element using HTML5?
- Remember and Repopulate File Input in HTML5
- input type week really exist in HTML5?
- How to define a drop-down list in HTML5?
- Discuss the various Input-Output Instructions in Computer Architecture?
- Validate the size of input=file in HTML5?
- What are the default values used by DB2 for various data types?

Advertisements