javaweb学习day1《HTML篇》--新浪微博(前端页面的创建思路及其HTML、css代码详解)
在这个例子中,我们创建了一个简单的新浪微博登录页面。以下是HTML和CSS代码的核心部分:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>新浪微博登录</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="login-container">
<div class="login-header">
<img src="sina-logo.png" alt="新浪微博logo">
</div>
<form class="login-form">
<div class="input-group">
<input type="text" required placeholder="手机号/邮箱">
</div>
<div class="input-group">
<input type="password" required placeholder="密码">
</div>
<button type="submit">登录</button>
</form>
<div class="login-footer">
<a href="#">忘记密码?</a>
<a href="#" class="register-link">立即注册</a>
</div>
</div>
</body>
</html>
CSS (style.css
):
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
}
.login-container {
width: 360px;
margin: 120px auto 0;
padding: 20px;
background-color: #fff;
border: 1px solid #e5e5e5;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.login-header {
margin-bottom: 30px;
text-align: center;
}
.login-header img {
width: 100px;
height: 100px;
}
.login-form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
}
.login-form input[type="text"] {
height: 40px;
}
.login-form input[type="password"] {
height: 45px;
}
.login-form button {
width: 100%;
padding: 10px;
background-color: #0078e7;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.login-footer {
text-align: center;
margin-top: 20px;
}
.login-footer a {
color: #0078e7;
text-decoration: none;
}
.login-footer a.register-link {
float: right;
}
这个例子展示了如何使用HTML和CSS创建一个简单的登录表单页面。其中包含了表单元素的创建、布局的设计和样式的应用。这是学习Web前端开发的基础知识。
评论已关闭