-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathindex.html
74 lines (67 loc) · 2.05 KB
/
index.html
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
<html manifest="offlineCache.manifest">
<head>
<title>PS4 Jailbreak</title>
<meta charset="utf-8"/>
<style>
.button {
background-color: #003263;
border-radius: 5px;
color: white;
padding: .5em;
text-decoration: none;
height:100%;
display:inline-table;
font-family: system-ui;
}
.button:focus,
.button:hover {
background-color: #007bff;
color: White;
}
.titlehead {
background-color: #003263;
border-radius: 5px;
color: white;
padding: .5em;
text-decoration: none;
text-align: center;
margin-top: -10px;
margin-bottom: -10px;
font-family: system-ui;
}
.titlehead:focus,
.titlehead:hover {
background-color: #007bff;
color: White;
}
.bg {
/* The image used */
background-image: url("ps4.jpg");
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style></head>
<body class="bg">
<script>
if (localStorage.truefirm == null) {
if(navigator.userAgent.indexOf("6.72")>=0){localStorage.truefirm="index672.html";window.location.href="index672.html";}else if(navigator.userAgent.indexOf("7.0")>=0){localStorage.truefirm="index702.html";window.location.href = "index702.html";}else if(navigator.userAgent.indexOf("7.5")>=0){localStorage.truefirm="75XV2/index.html";window.location.href = "75XV2/index.html";}else if(navigator.userAgent.indexOf("9.00")>=0){localStorage.truefirm="900/index.html";window.location.href = "900/index.html";}
}else{
window.location.href = localStorage.truefirm;
}
</script>
<h1 id="progress" class="titlehead">PS4 Jailbreak</h1><hr><br>
<div>
<table align="center" style="width:600px;margin-top:30px;">
<tr>
<td align="center" colspan="2" >
<a href="index672.html" class="button" style="width:29%">6.72</a>
<a href="index702.html" class="button" style="width:29%">7.02</a>
<a href="75XV2/index.html" class="button" style="width:29%">7.5X</a><br><br/>
<a href="900/index.html" class="button" style="width:29%">9.00</a>
</td>
</tr>
</table></div>
</body>
</html>