前端 html body 内标签之input

 可以做登录页面

text是文本输入框

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <input type="text" />
</body>
</html>

 在里面输入内容

password可以输入密码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <input type="text" />
    <br>
    <input type="password" />
</body>
</html>

button是按钮

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <input type="text" />
    <br>
    <input type="password" />
    <br>
    <input type="button" value="登录"/>
</body>
</html>

 value 为按钮加上文字

猜你喜欢

转载自www.cnblogs.com/mingerlcm/p/9057099.html