A form with an accept-charset attribute.
The accept-charset
attribute specifies the character encodings that are to be used for the form submission.
<form accept-charset="character_set">
Value | Description |
---|---|
character_set | A space-separated list of one or more character encodings that are to be used for the form submission.
Common values:
In theory, any character encoding can be used, but no browser understands all of them. The more widely a character encoding is used, the better the chance that a browser will understand it. To view all available character encodings, go to our Character sets reference. |
Example:
HTML
<form action="/action_page.php" accept-charset="utf-8">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname"><br><br>
<input type="submit" value="Submit">
</form>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |