|
发表于 2017-3-31 14:30:00
|
显示全部楼层
交作业啦啦啦~
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>欢迎来到html的世界</title>
- <style type="text/css">
- html,body{
- height: 100%;
- color:#fff;
- font-family: sans-serif;
- }
- body{
- background: url(背景图片.jpg) center center;
- background-size: cover;
- margin: 0;
- padding: 0;
- position: relative;
- }
- #container{
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- width: 100%;
- text-align: center;
- }
- h1{
- font-size: 78px;
- margin-bottom: -15px;
- }
- #z{
- margin-bottom: 20px;
- }
- a{
- color: #999;
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <h1>我爱鱼C</h1>
- <p>bbs.fishC.com - 是你在改变我,谢谢你</p>
- <p id="z">---------[url=home.php?mod=space&uid=378930]@不二如是[/url] 的学生 lyzklkl---------</p><br>
- <a href="http://bbs.fishc.com/forum-337-1.html">传送门</a>
- </div>
- </body>
- </html>
复制代码
|
|