wiki/开发/前端/HTMLCSS/HTMLCSS练习/综合案例/综合案例8-banner效果.html
2025-01-02 10:46:09 +08:00

45 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
height: 500px;
background-image: url(./images/bk.png);
background-position: left bottom;
background-repeat: no-repeat;
background-color: #f3f3f3;
text-align: right;
color: #333;
}
h1 {
text-align: right;
font-weight: 400;
line-height: 100px;
}
p {
text-align: right;
}
a {
display: inline-block;
width: 125px;
height: 40px;
text-align: center;
line-height: 40px;
text-decoration: none;
color: white;
background-color: #f06b1f;
}
</style>
</head>
<body>
<div>
<h1>让创造产生价值</h1>
<p>我们希望小游戏平台可以提供无限的可能性,让每一个创作者都可以将他们的才华和创意传递给用户。</p>
<a href="#">我要报名</a>
</div>
</body>
</html>