|
发表于 2018-7-15 07:31:34
|
显示全部楼层
交作业喽:
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>欢迎来到HTML世界</title>
- <style type="text/css">
- html,body {
- height: 100%;
- color: #FF0088;
- font-family: sans-serif;
- }
- body {
- background: url("https://picsum.photos/1600/1200/?random") 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>www.fishc.com-让编程改变世界</p>
- <a >咻!</a>
- </div>
- </body>
- </html>
复制代码 |
评分
-
查看全部评分
|