本帖最后由 夕颜梦雨 于 2018-3-8 17:33 编辑 <!DOCTYPE html>
<html>
<head>
<title>欢迎来到HTML世界</title>
<style type="text/css">
html,body{
height: 100%;
color: #FF0088;
font-family: sans-serif;
}
body{
background: url(0004素材.jpg) center center;
background-size: cover;
margin: 0;
padding: 0;
position: relative;
}
#container{
width: 100%;
text-align: center;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
h1{
font-size: 66px;
margin-bottom: 22px;
}
p{
font-size: 33px;
margin-bottom: 22px;
}
a{
font-size: 55px;
color: #FFF;
border:1px solid #3FF;
background-color: #3FF;
border-radius: 10px;
padding: 10px 66px;
text-decoration: none;
}
</style>
</head>
<body>
<div id="container">
<h1>热爱鱼,热爱生活</h1>
<p>www.fishc.com---让编程改变世界</p>
<a href="#">传送门</a>
</div>
</body>
</html>
|