-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
96 lines (55 loc) · 2.5 KB
/
Copy pathindex.php
File metadata and controls
96 lines (55 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="cache-control" content="max-age=0"/>
<meta http-equiv="cache-control" content="no-cache"/>
<meta http-equiv="expires" content="0"/>
<meta http-equiv="pragma" content="no-cache"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<meta name="description" content="A little grid game, where you have one guess to find the Winning Box!">
<meta property="og:title" content="PHP Grid Game"/>
<meta property="og:description" content="A little grid game, where you have one guess to find the Winning Box!">
<meta property="og:locale" content="en_GB"/>
<meta property="og:locale:alternate" content="fr_FR"/>
<meta property="og:locale:alternate" content="es_ES"/>
<meta property="og:type" content="article"/>
<meta property="og:image" content="https://www.banuscv.co.uk/PNG/gridGame.png">
<meta property="og:image:type" content="image/png"/>
<link href="https://fonts.googleapis.com/css?family=Poppins" rel="stylesheet">
<title>Grid Game</title>
<!-- mobile redirect -->
<script type="text/javascript">
<!--
if ( screen.width <= 699 ) {
document.location = "mobile.php";
}
//-->
</script>
<script language=javascript>
<!--
if ( ( navigator.userAgent.match( /iPhone/i ) ) || ( navigator.userAgent.match( /iPod/i ) ) ) {
location.replace( "http://www.banuscv.co.uk/PHP Grid Game/mobile.php" );
}
-->
</script>
<!--- linked css --->
<link href="css/main.css" rel="stylesheet" type="text/css">
<link href="css/fireworks.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--- choose a game option -->
<div class="selector">
<div class="header">Welcome to Grid Game</div>
<h3>Please choose a mode:</h3>
<!-- link to games -->
<a href="sandbox/" class="btn">Sandbox</a>
<a href="campaign/" class="btn">Campaign</a>
</div>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCUqxDbiAMFT5WOdQ1VV8cbVDg3A3wS40o&callback=myMap"></script>
<script type="text/javascript" src="js/main.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js" crossorigin="anonymous"></script>
</body>
</html>