xxxxxxxxxx
<!-- fieldset with email, max-length-password, submit & reset button-->
<form>
<fieldset>
<legend>Authentication</legend>
<label for="">Email:</label>
<input type="email" name="email">
<label for="">Password:</label>
<input type="password" maxlength="8">
<input type="submit" value="submit" target="submit">
<input type="button" value="reset" target="reset">
</fieldset>
</form>
xxxxxxxxxx
<form>
<fieldset>
<legend>Personal Information</legend>
<!-- Form controls go here -->
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<br>
<!-- More form controls -->
</fieldset>
</form>
xxxxxxxxxx
<form>
<fieldset>
<legend>Box title</legend>
<label for="field-1">Field 1:</label>
<input type="text" id="field-1"><br/>
<label for="field-2">Field 2:</label>
<input type="text" id="field-2">
</fieldset>
</form>
xxxxxxxxxx
<fieldset>
<legend>Ship the blue gift to</legend>
<p> <label> Address: <textarea name=ba autocomplete="section-blue shipping street-address"></textarea> </label>
<p> <label> City: <input name=bc autocomplete="section-blue shipping address-level2"> </label>
<p> <label> Postal Code: <input name=bp autocomplete="section-blue shipping postal-code"> </label>
</fieldset>
<fieldset>
<legend>Ship the red gift to</legend>
<p> <label> Address: <textarea name=ra autocomplete="section-red shipping street-address"></textarea> </label>
<p> <label> City: <input name=rc autocomplete="section-red shipping address-level2"> </label>
<p> <label> Postal Code: <input name=rp autocomplete="section-red shipping postal-code"> </label>
</fieldset>
xxxxxxxxxx
<fieldset>
<span>Billing Address</span><input type="text" />
<span>City</span><input type="text" />
<span>Postal Code</span><input type="text" />
</fieldset>