表格综合练习

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <style>

    .container{
        width: 40%;
        margin: 20px auto;
    }
    .common{
        width:230px;
        height: 30px;
    }
    span{
        display:inline-block;
        width: 150px;

        text-align: right;
    }
    div{
        margin-bottom: 10px;
    }
    </style>
</head>
<body>

    <form class="container">
    <!-- ********* Begin ********* -->
     <div>
        <span>用户名:</span> 
            <input type="text" class="common"/> 
    </div>
     <div>
        <span>昵称:</span> 
            <input type="text" class="common"/> 
    </div>
    <div>
        <span>性别:</span>
        <label for="male" name="sex">
            <input type="radio" id="male"/></label>
        <label for="female" name="sex">
            <input type="radio" id="female"/></label>
        <label for="other" name="sex">
            <input type="radio" id="other" disabled="disabled"/>保密
        </label>
    </div>
    <div>
        <span>教育程度:</span>
        <select class="common"/>
            
            <option>高中</option>
            <option>中专</option>
            <option>大专</option>
            <option selected="selected">本科</option>
            <option>硕士</option>
            <option>博士</option>
            <option>其他</option>
        </select>
    </div>
    <div>
        <span>婚姻状况:</span>
        <label for="single" name="state">
            <input type="radio" checked="checked" id="single"/>未婚
        </label>
        <label for="married" name="state">
            <input type="radio" id="married"/>已婚
        </label>
        <label for="secret" name="state">
            <input type="radio" id="secret"/>保密
        </label>
    </div>
    <div>
        <span>兴趣爱好:</span>
        <label for="football" name="hobby">
            <input type="checkbox" id="football"/>踢足球
        </label>
        <label for="basketball" name="hobby">
            <input type="checkbox" id="basketball"/>打篮球
        </label>
        <label for="film" name="hobby">
            <input type="checkbox" id="film" checked="checked"/>看电影
        </label>
    </div>
    <div>
        <span>描述自己的特点: </span> 
        <textarea maxlength="20" class="common"></textarea>
    </div>
    <div >
    <span></span>
    <input type="submit" value="提交" class="common"/>
    </div>
<!-- ********* End ********* -->
</form>
</body>
</html>

 

posted @ 2022-03-02 11:24  小耿想努力呀  阅读(29)  评论(0编辑  收藏  举报