first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>知乎</title>
<style>
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
outline: none;
}
.main {
width: 490px;
height: 450px;
border-radius: 4px;
border: 1px solid #d3d3d3;
text-align: center;
}
.main img {
width: 100%;
}
.main h1 {
margin-top: 32px;
margin-bottom: 4px;
font-size: 34px;
}
.main p {
margin-top: 4px;
margin-bottom: 36px;
font-size: 22px;
color: #444;
}
.main .login {
width: 350px;
height: 36px;
background-color: #06f;
margin: 0 auto;
line-height: 36px;
color: #fff;
border-radius: 3px;
font-size: 14px;
}
</style>
</head>
<body>
<div class="main">
<img src="https://static.zhihu.com/heifetz/assets/loginBackgroundImg.2c81e205.png" alt="">
<h1>登录一下</h1>
<p>更多精彩内容等你发现</p>
<div class="login">登录</div>
</div>
</body>
</html>