<fieldset>
tag
Group related elements within the form
disabled property:define whether the fieldset is visible.
form property:define one or more forms to which the fieldset belongs.
<legend>
tag
This element defines the title for the fieldset,figure,and details elements.
<fieldset>
<legend>Health information:</legend>
stature:<input type="number" value="身高">
<br/><br/>
weight:<input type="number" value="体重">
</fieldset>
<optgroup>
tag
This label is used to define the option group.
<select>
<optgroup label="1">
<option>1-1</option>
<option>1-2</option>
</optgroup>
<optgroup label="2">
<option>2-1</option>
<option>2-2</option>
</optgroup>
</select>
<datalist>
tag
This label is used to define the option group.Use with the input element to create a drop-down list of input values.
<form>
<input list="broser">
<datalist id="broser">
<option>1</option>
<option>2</option>
<option>3</option>
</datalist>
<input type="submit" value="submit">
</form>
attention:The id of datalist should be equal to the list of input.(datalist.id = input.list)
<figure>
tag
This tag is used to mark image in te document.
<figure>
<img src="1.jpg" alt="man">
</figure>