File size: 366 Bytes
d674c1a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>3...2...1 GO!</title>
</head>
<body>
<script>
function gopc() {
if (/Mobi|Android/i.test(navigator.userAgent)) {
window.location.href = './instagram.com.html';
} else {
window.location.href = 'https://www.instagram.com/';
}
}
gopc();
</script>
</body>
</html>
|