| 12345678910111213141516171819202122232425262728293031 |
- <!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>QA</title>
- <style>
- *{
- padding:0;
- margin:0;
- font-family:Arial;
- }
- body{
- background:#555;
- }
- p{
- color: #fff;
- padding: 8px 8px;
- }
- a{
- text-decoration:none;
- color: #fff;
- font-weight: bold;
- }
- </style>
- </head>
- <body>
- <p>Este es un sitio de pruebas, para ingresar al sitio completo <a href="https://memoriadc.solerpalau.mx/" target="_PARENT">haga click aquí...</a></p>
- </body>
- </html>
|