0
点赞
收藏
分享

微信扫一扫

初步认识表单------>html

Silence潇湘夜雨 2022-04-14 阅读 71
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>表单</title>
</head>

<body>
    <form action="学习.html" method="post">
    用户信息:<input type="text" placeholder="请输入你的用户名" name="name">
        <br>
    密码:<input type="password" placeholder="请输入你的密码" name="mima">
        <br>
        <input type="submit" value="注册">
        <input type="submit" value="登录">
        <input type="reset"  value="重新输入">
<!--        <button type="sumit">注销<button/>-->
     </from>
</body>
</html>
举报

相关推荐

0 条评论