以下是一个简单的手机登录网站模板,包含头部信息、登录页面和个人信息页面:
```html
t
t
手机登录网站t
t
tt
欢迎来到手机登录网站
tt
tt
tt
个人信息页面
tt
tt
```
CSS样式表:
```css
body {
tmargin: 0;
tpadding: 0;
tfont-family: Arial, sans-serif;
}
.container {
tmax-width: 500px;
tmargin: 0 auto;
tpadding: 20px;
tbackground-color: #fff;
tborder-radius: 5px;
tbox-shadow: 0 0 10px rgba(0,0,0,0.2);
}
h1 {
ttext-align: center;
tmargin-bottom: 30px;
}
form {
tdisplay: flex;
tflex-direction: column;
}
label {
tmargin-bottom: 10px;
}
input[type="text"],
input[type="password"] {
twidth: 100%;
tpadding: 10px;
tmargin-bottom: 20px;
tborder-radius: 5px;
tborder: 1px solid #ccc;
}
input[type="submit"] {
tbackground-color: #4CAF50;
tcolor: #fff;
tpadding: 10px 20px;
tborder: none;
tborder-radius: 5px;
tcursor: pointer;
}
.bottom {
tpadding: 10px;
ttext-align: center;
tfont-size: 16px;
}
```