web-表单

<!DOCTYPE html>
<html >
<head>
    <meta charset="utf-8">
    <title>火影忍者</title>
</head>
<body>
    <form action="" method="get" class="form-example">
        <div class="form-example">
        <input type="checkbox" name="vehicle" value="like">你喜欢火影<br>
        <input type="checkbox" name="vehicle" value="dislike">你不喜欢火影<br>
      </div>
        <div class="form-example">
            <lable for="name">输入你的账户名:</label>
            <select name="name">
                <option value="mingren">漩涡鸣人</option>
                <option value="zuozu">宇智波佐助</option>
                <option value="woailuo">我爱罗</option>
            </select>
        </div>
        <div class="form-example">
            <label for="password">输入你的密码:</label>
            <input type="password" name="psd">
        </div>
        <div class="form-example">
            <input type="submit" value="提交">
        </div>
    </form>
</body>
</html>

猜你喜欢

转载自www.cnblogs.com/nsgbdzm/p/9661395.html