<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<header>
<div>欢迎注册360账号</div>
<button type="button">注册</button>
</header>
<section>
<div>手机注册</div>
<div>已有账号<a href="login.html">立即登录</a></div>
</section>
<section>
<form action="" method="post">
<div><label for="phone">手机号</label><input type="text" id="phone"/></div>
<div>请输入您的手机号</div>
<div><label for="verification">验证码</label>
<input type="text" id="verification" /><img src="images/captha.jpb" alt="" /><a href="#">换一张</a>
</div>
<div>请输入图中的字母或数字,不区分大小写</div>
<div><label for="code">校验码</label><input type="text" id="code"/><button type="button">免费获取校验码</button></div>
<div>请输入短信中的6位数字校验码<a href="#">校验码场景问题</a></div>
<div><label for="username">用户名</label><input type="text" id="username"/></div>
<div>2-14个字符:英文、数字或中文</div>
<div><label for="password">密码</label><input type="text" id="password"/></div>
<div>6-20个字符(区分大小写)</div>
<div><button type="submit">马上注册</button></div>
<div><input type="checkbox"/>我已阅读并同意<a href="#">《360用户服务条款》</a></div>
</form>
</section>
</body>
</html>
下面的是360logo:
<!DOCTYPE html>
<html>
<head>
<title>360 Login</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
<body>
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
.container {
margin: 0 auto;
max-width: 400px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
h1 {
text-align: center;
color: #333; }
input[type="text"], input[type="password"] {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
}
input[type="submit"] {
display: block;
width: 100%;
padding: 10px;
background-color: #00a0e9;
color: #fff;
border: none;
border-radius: 5px;
box-sizing: border-box;
font-size: 16px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0088cc;
}
</style>
</head>
<body>
<div class="container">
<h1>360 Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Login">
</form>
</div>
</body>
</html>