<fieldset> 標籤將表單內容的一部分打包,生成一組相關表單的欄位。
當一組表單元素放到 <fieldset> 標籤內時,瀏覽器會以特殊方式來顯示它們,它們可能有特殊的邊
界、3D 效果,或者甚至可創建一個子表單來處理這些元素。
<fieldset> 標籤沒有必需的或唯一的屬性。
<legend> 標籤為 fieldset 元素定義標題。
<form>
<fieldset>
<legend>health information</legend>
<label>height: <input type="text" /></label>
<label>weight: <input type="text" /></label>
</fieldset>
</form>