SOURCE

console 命令行工具 X clear

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

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

<body>
    <form>
        <center>
            <h>注册信息</h>
        </center>
        <hr color="#336699">
        <table bgcolor="#f2f2f2" width="600px" align="center">
            <tr>
                <td>
                    用户名:
                </td>
                <td>
                    <input type="text" placeholder="请输入用户名" size="25" maxlength="6">
                </td>
            </tr>
            <tr>
                <td>
                    密码:
                </td>
                <td>
                    <input type="password" placeholder="请输入密码" size="25" maxlength="6">
                </td>
            </tr>
            <tr>
                <td>
                    确认密码:
                </td>
                <td>
                    <input type="password" placeholder="请重新输入密码" size="25" maxlength="6">
                </td>
            </tr>
            <tr>
                <td>
                    上传照片:
                </td>
                <td>
                    <input type="submit" value="选择文件" </td>未选择任何文件
            </tr>
        </table>
    </form>
</body>

</html>