|
发表于 2017-4-2 17:31:55
|
显示全部楼层
交作业!!!!!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>欢迎来到html的世界</title>
- <style type="text/css">
- html,body{
- height: 100%;
- color: #FF3EFF;
- font-family: sans-serif;
- }
- body{
- background: url(bg.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;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <h1>我爱鱼C</h1>
- <p>bbs.fishC.com - 让编程改变世界</p>
- <a href="http://bbs.fishc.com/forum-337-1.html">传送门</a>
- </div>
- </body>
- </html>
复制代码
|
|