
- 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
HTML option value Attribute
The HTML option value attribute define the value of the option HTML element which is to be sent on a server when the form is submitted in an HTML document.
Syntax
Following is the syntax −
<option value=”text”></option>
Let us see an example of HTML option value Attribute −
Example
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 2px; width: 40%; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } </style> <body> <h1>HTML optimum Attribute Demo</h1> <p>Select your favourite subject:</p> <form method="post" action=""> <select> <option value="Physics">Physics</option> <option value="Chemistry">Chemistry</option> <option value="Biology">Biology</option> </select> <input type="submit" value="Submit" class="btn"> </form> </body> </html>
Output
- Related Articles
- HTML value Attribute
- HTML value Attribute
- HTML value Attribute
- HTML value Attribute
- HTML DOM Option value Property
- HTML input value Attribute
- HTML DOM Option Object
- HTML DOM Option text Property
- HTML DOM Option disabled Property
- HTML DOM Option index Property
- HTML DOM Option defaultSelected Property
- HTML DOM Option label Property
- HTML pattern Attribute
- HTML novalidate Attribute
- HTML maxlength Attribute

Advertisements