12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>ip2location</title>
- <style>
- html {
- min-height: 100%;
- height: 100%;
- position: relative;
- }
- body {
- margin: 0;
- padding: 0;
- position: relative;
- width: 100%;
- min-height: 100%;
- height: 100%;
- height: auto;
- display: table;
- }
- .wrapper {
- padding: 15px;
- text-align: center;
- display: table-cell;
- vertical-align: middle;
- }
- h1, h2 {
- font-weight: 400;
- font-size: 34px;
- line-height: 36px;
- margin: 10px 0;
- }
- h2 {
- font-weight: 350;
- font-size: 14px;
- line-height: 18px;
- margin-bottom: 0;
- }
- @media only screen and (max-width:800px) {
- .wrapper {
- padding: 15px 0;
- }
- h1, h2 {
- padding: 0 15px;
- }
- }
- </style>
- </head>
- <body>
- <div class="wrapper">
- <h1>ip2location</h1>
- <h2>{{$.Data.Additional.ClientIP}}</h2>
- <h2>{{$.Data.Additional.GeoIPData}}</h2>
- </div>
- </body>
- </html>
|