html登陆界面模板
<!DOCTYPE html>
<html>
<head>
<style>
    body {
        font-family: Arial, sans-serif;
        text-align: center;
    }
    .login {
        margin: 50px auto;
        width: 300px;
        padding: 20px;
        border: 1px solid #ccc;
    }
    input[type="text"],
    input[type="password"] {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
个人网页设计模板html免费
        display: inline-block;
        border: 1px solid #ccc;
        box-sizing: border-box;
    }
    input[type="submit"] {
        background-color: #4CAF50;
        color: white;
        padding: 10px 20px;
        margin: 8px 0;
        border: none;
        cursor: pointer;
        width: 100%;
    }
</style>
</head>
<body>
    <div class="login">
        <h2>登录</h2>
        <form>
            <input type="text" placeholder="用户名" required><br>
            <input type="password" placeholder="密码" required><br>
            <input type="submit" value="登录">
        </form>
    </div>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。