| 123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{config('app.name2')}}</title>
- <style>
- * { margin: 0; padding: 0; }
- html, body {
- height: 100%;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #fff;
- }
- h1 {
- font-size: 64px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
- color: #333;
- }
- </style>
- </head>
- <body>
- <h1>
- {{config('app.name2')}}
- </h1>
- </body>
- </html>
|