123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="">
- <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">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title><%= htmlWebpackPlugin.options.title %></title>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
- <style>
- body{
- /* width: 100%;
- height: 100vh;
- margin: 0;
- background: url("./background.jpg") center no-repeat;
- background-size:cover;
- overflow-x: scroll; */
- /* width: 3000px;
- background-image: url('./background.jpg');
- background-repeat: no-repeat;
- background-size: auto 100%;
- background-position: center top;
- overflow-x: scroll; */
- }
- </style>
|