<!DOCTYPE html>
<html>
<body>
<h1>
Multiple Accept-charset Attribute declarations for the form Element
Example
</h1>
<p>
The following example sets the primary accept-charset as Hewbrew, with
UTF-8 as secondary.
</p>
<form accept-charset="ISO-8859-8 UTF-8" action="" method="get" class="form">
<fieldset class="fieldset">
<label for="name">Name: </label>
<input type="text" name="name" id="name" />
</fieldset>
<div class="form-example">
<input type="submit" value="Subscribe!" />
</div>
</form>
</body>
</html>