1009form表单

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <!-- 表单 -->
    <form action="http://www.baidu.com/s" method="get">
        <!-- 文本框 -->
        用户名:<input type="text" name="wd" value="" placeholder="请输入用户名">
        <br>
        <!-- 密码框  -->
        <input type="password" name="" id="" placeholder="请输入密码">
        <br>
        <!-- 单选按钮 -->
        <input type="radio" name="sex" id=>女
        <input type="radio" name="sex" id=>男
        <br>
        <!-- 复选框 -->
        <input type="checkbox" name="" id="">语文
        <input type="checkbox" name="" id="">数学
        <br>
        <!-- 按钮 -->
        <input type="button" value="按钮">
        <br>
        <!-- 隐藏域 -->
        <input type="hidden" name="" value="yincang">
        <!-- 文件上传 -->
        <input type="file" name="" id="">
        <br>
        <!-- 重置按钮 -->
        <input type="reset" value="重置">
        <!-- 提交按钮 -->
        <input type="submit" value="百度一下">
    </form>

    
    <form action="http://192.168.1.176/a.php" method="post">
        <input type="text" name="use" id="">
        <input type="submit" value="提交">
    </form>
</body>

</html>
原文地址:https://www.cnblogs.com/1014852131qq/p/13786033.html