HTML5 add form tags

<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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值