|
发表于 2017-5-9 18:49:04
|
显示全部楼层
作业- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>欢迎来到国际大厦酒店调查问卷界面!</title>
- <style type="text/css">
- html,body{
- height:100%;
- color:#000000;
- font-family:sans-serif;
- }
- body{
- background:url(background.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:33px;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <h1>国际大厦酒店</h1>
- <p> 餐饮部:</p>
- <a href="https://www.baidu.com/?tn=96674718_hao_pg">传送门</a>
-
- </body>
- </html>
复制代码 |
|