- ID de exploración:
- de36ab87-bfd3-40cb-984d-e160b7d69fb7Finalizado
- URL enviada:
- https://theweedshop.site/
- Informe finalizado:
Enlaces: 1 encontrados
Los enlaces salientes identificados en la página
Enlace | Texto |
---|---|
https://www.google.com | No |
Variables JavaScript: 3 encontradas
Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual
Nombre | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Mensajes de registro de la consola: 0 encontrados
Mensajes registrados en la consola web
HTML
El cuerpo HTML sin procesar de la página
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Age Verification</title>
<style>
body {
background-image: url("https://s12.gifyu.com/images/SVHEk.gif");
background-color: #cccccc;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 0;
padding: 0;
font-family: Newton, Arial, sans-serif; /* Newton font, fallbacks to Arial and sans-serif */
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.input {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
font-family: 'Newton', Arial, sans-serif;
}
.input.no {
background-color: #f44336; /* Red for 'No' */
}
h1, p, a {
color: #000; /* Text color */
}
</style>
</head>
<body>
<div>
<h1>Age Verification</h1>
<p>Are you over the age of 21?</p>
<a class="input" href="page1.html" target="">Yes</a>
<a class="input no" href="https://www.google.com" target="">No</a>
</div>
</body></html>