demo-page / desktop.html
dfhfhfgg's picture
Upload 5 files
d674c1a verified
raw
history blame
379 Bytes
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>1...2...3 GO!</title>
</head>
<body>
<script>
function goredit() {
if (/Mobi|Android/i.test(navigator.userAgent)) {
window.location.href = 'https://www.instagram.com/';
} else {
window.location.href = 'https://www.instagram.com/';
}
}
goredit();
</script>
</body>
</html>