使用HTML5和CSS3开发电子商务网站——第三章,课后作业

 
 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>申请表</title>
</head>
<body>
<form method="post" action="">
    <h1>申请表</h1>
    <p><label for="b">姓名:<input type="text" name="姓名" id="b"/></p>
    <p>教育程度:<input type="checkbox" checked />硕士<input type="checkbox" id="d"/>博士</p>
    <p><label for="a"> 常用邮箱:</label><input type="email" id="a" required/> </p>
    <p>性别:<input type="radio" name="sex"/>男<input type="radio" name="sex"/>女</p>
    <p><label for="age">年龄:</label><input type="text" name="age" id="age" size="30"/> </p>
    <p><label for="yue">月薪:</label><input type="text" id="yue" size="20" id="yue"/> </p>
    <p>
        附注:<textarea name="textarea" placeholder="请在这里键入附注" cols="20" rows="5"></textarea>
    </p>
    <p>国籍:
        <select name="国籍">
            <option value="America">美国</option>
            <option value="Australian">澳大利亚</option>
            <option value="Japan">日本</option>
            <option value="Singapore">新加坡</option>
        </select>
    </p>
    <p><input type="submit" value="提交"/>  <input type="submit" value="重置"/> </p>
</form>
</body>
</html>


猜你喜欢

转载自blog.csdn.net/qq_41882685/article/details/80717397