-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathindex.html
126 lines (118 loc) · 3.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Unblocked Websites | Home</title>
<link rel="icon" type="image/png" href="images/uw.png" sizes="16x16" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/popup.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap" />
<style>
body {
font-family: Roboto;
color: #ffffff;
text-align: center;
background-color: #1c1c1c;
cursor: url('images/pointerblue1.png'), none;
padding-top: 9.5%;
}
a:hover,
button:hover {
cursor: url('images/handblue120.png'), pointer;
}
</style>
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=GA_MEASUREMENT_ID"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'GA_MEASUREMENT_ID');
</script>
<!-- Google Tag Manager -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KXRHPNW89S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-KXRHPNW89S');
</script>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a href="https://github.com/SchoolIzBoring">
<img src="./images/uw.png" alt="Unblocked" width="50" height="50" class="logo" />
</a>
</div>
<div class="navitems">
<ul class="nav navbar-nav">
<li class="active">
<a href="index.html">Home</a>
</li>
<li>
<a href="gamesites.html">Gamesites</a>
</li>
<li>
<a href="proxies.html">Proxies</a>
</li>
<li>
<a href="other.html">Other</a>
</li>
<li>
<a href="tools.html">Tools</a>
</li>
<li>
<a href="settings.html">Settings</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="header">
<img src="logo.png" alt="Unblocked" />
</div>
<script src="https://apps.elfsight.com/p/platform.js" defer></script>
<div class="elfsight-app-613f4807-153e-4854-b903-f439ed856224"></div>
<div class="container">
<div></div>
<p class="section-text">Welcome to v2!</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/keen-slider"></script>
<script src="./js/common.js"></script>
<script src="./js/index.js"></script>
<script src="./js/popup.js"></script>
<div class="popup">
</div>
</div>
<script>
const popup = document.querySelector('.popup');
const closeBtn = document.querySelector('.close-btn');
const flagKey = 'popup-displayed';
// Check if the flag is set
if (!localStorage.getItem(flagKey)) {
displayPopup();
}
// Display the popup
function displayPopup() {
popup.style.display = 'block';
}
// Close the popup
function closePopup() {
popup.style.display = 'none';
localStorage.removeItem(flagKey);
}
// Close the popup when the close button is clicked
closeBtn.addEventListener('click', closePopup);
</script>
</body>
</html>