12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- html,body{
- margin: 0;
- padding: 0;
- }
- div{
- box-sizing: border-box;
- }
- .box{
- width: 1000px;
- height: 800px;
- background-color: #ccc;
- background-image: url('https://hzstatic.hzinsights.com/static/icon/hzyb/rddp-share-bg.png');
- background-repeat: no-repeat;
- background-size: cover;
- display: table-cell;
- vertical-align: middle;
- }
- .text{
- color: #fff;
- font-size: 80px;
- line-height: 1.5;
- text-align: center;
- padding: 0 100px;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="text">{{TITLE}}</div>
- </div>
- </body>
- </html>
|