学习13 文本/密码输入框的标签

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>表单标签</title>
</head>
<body>
<form method="post" action="save.php">
    账户:
    <input type="text" name="myname" value="" />
    <!--text代表文本输入框-->
    <br/>
    密码:
    <input type="password" name="pass" value="" />
    <!--password代表密码输入框-->
    <br/>
    <input type="submit" name="submit" value="确认提交" />
</form>
</body>
</html>
 

 

posted @ 2017-06-27 22:53  Riona-C  阅读(158)  评论(0编辑  收藏  举报