-
Notifications
You must be signed in to change notification settings - Fork 153
/
apps.html
181 lines (173 loc) · 8.53 KB
/
apps.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!--
▄▀▀▄▀▀▀▄ ▄▀▀▄▀▀▀▄ ▄▀▀▀▀▄ ▄█ ▄▀▀█▄▄▄▄ ▄▀▄▄▄▄ ▄▀▀▀█▀▀▄
█ █ █ █ █ █ █ █ ▄▀▀▀█▀ ▐ ▐ ▄▀ ▐ █ █ ▌ █ █ ▐
▐ █▀▀▀▀ ▐ █▀▀█▀ █ █ █ █ █▄▄▄▄▄ ▐ █ ▐ █
█ ▄▀ █ ▀▄ ▄▀ ▐ █ █ ▌ █ █
▄▀ █ █ ▀▀▀▀ ▄ ▀▄ ▄▀▄▄▄▄ ▄▀▄▄▄▄▀ ▄▀
█ ▐ ▐ ▀▀▀▀ █ ▐ █ ▐ █
▐ ▐ ▐ ▐
▄▀▀▄ ▄▄ ▄▀▀▄ ▄▀▀▄ ▄▀▀█▄▄
█ █ ▄▀ █ █ █ ▐ ▄▀ █
▐ █▄▄▄█ ▐ █ █ █▄▄▄▀
█ █ █ █ █ █
▄▀ ▄▀ ▀▄▄▄▄▀ ▄▀▄▄▄▀
█ █ █ ▐
▐ ▐ ▐
-->
<!DOCTYPE html>
<html>
<head>
<!--Display-->
<title>Project-Hub | Apps</title>
<link rel="icon" href="favicon.svg">
<!--Stylesheets-->
<link rel="stylesheet" href="stylesheet.css">
<link rel="stylesheet" href="page_styles/apps.css"> <!--Page-Specific-->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat&display=swap">
<link rel="stylesheet" href="hover.css"> <!--Hover.CSS Library-->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css"> <!--AOS Library-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://kit.fontawesome.com/4139823eac.js" crossorigin="anonymous"></script>
<!--Meta-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Google Analytics-->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M9KJ1XPKLF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M9KJ1XPKLF');
</script>
<!--Scripts-->
<script src="startupScript.js"></script>
<!--Styling-->
<style>
/* Ad Segment */
.ad-segment {
margin: 1vw;
}
</style>
</head>
<body>
<!--Navbar Start-->
<div class="nav" style="display: flex;">
<button class="hvr-underline-from-center"
data-aos="fade-down"
data-aos-delay="50"
data-aos-duration="1100"
data-aos-easing="ease-in-out"
data-aos-once="true"
onclick="window.location.href='index.html'"
style="cursor:pointer"><a>Home</a></button>
<button class="hvr-underline-from-center"
data-aos="fade-down"
data-aos-delay="50"
data-aos-duration="1000"
data-aos-easing="ease-in-out"
data-aos-once="true"
onclick="window.location.href='games.html'"
style="cursor:pointer"><a>Games</a></button>
<button class="hvr-underline-from-center active"
data-aos="fade-down"
data-aos-delay="50"
data-aos-duration="900"
data-aos-easing="ease-in-out"
data-aos-once="true"
onclick="window.location.href='apps.html'"
style="cursor:pointer"><a>Apps</a></button>
<button class="hvr-underline-from-center"
data-aos="fade-down"
data-aos-delay="50"
data-aos-duration="800"
data-aos-easing="ease-in-out"
data-aos-once="true"
onclick="window.location.href='contact.html'"
style="cursor:pointer"><a>Contact</a></button>
<div id="mobile-removables">
<button class="hvr-underline-from-center"
data-aos="fade-down"
data-aos-delay="50"
data-aos-duration="700"
data-aos-easing="ease-in-out"
data-aos-once="true"
onclick="window.location.href='settings.html'"
style="cursor:pointer"><a>Settings</a></button>
<button class="hvr-underline-from-center"
data-aos="fade-down"
data-aos-delay="50"
data-aos-duration="600"
data-aos-easing="ease-in-out"
data-aos-once="true"
onclick="window.location.href='https://github.com/IamChristianS/v1'"
style="cursor:pointer"><a>GitHub</a></button>
</div>
</div>
<!--Navbar End-->
<!--Header Image-->
<img src="img/header.png" alt="Image couldn't load." class="img-header" style="box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); margin-bottom: 1vw;">
<!--Ad Segment Start-->
<br><center><script>
var afg={};afg.u=6328;afg.s=4;
document.write("<sc"+"ript src='//js.adforgames.com/cd.js'></sc"+"ript>");
</script></center><br>
<!--Ad Segment End-->
<div class="disclaimer">
<h2>Certain apps may NOT be working!</h2>
<p>Due to the complexity of these apps, we are unable to host some of them independently. Unfortunately, this means that embedded apps are able to be blocked. If you encounter a blocked app, please use our <a>Contact Page</a> and talk to us about it.</a></p>
</div>
<!--App Library-->
<div class="app-grid">
<div class="app-item">
<a href="apps/chatgpt/index.html" target="_blank">
<img src="apps/img/chatgpt.png" alt="ChatGPT">
</a>
<a class="app-links" href="apps/chatgpt/index.html" target="_blank"><strong>ChatGPT</strong></a>
</div>
<div class="app-item">
<a href="apps/desmos/index.html" target="_blank">
<img src="apps/img/desmos.png" alt="Desmos">
</a>
<a class="app-links" href="apps/desmos/index.html" target="_blank"><strong>Desmos</strong></a>
</div>
<div class="app-item">
<a href="apps/mathway/index.html" target="_blank">
<img src="apps/img/mathway.png" alt="Mathway">
</a>
<a class="app-links" href="apps/mathway/index.html" target="_blank"><strong>Mathway</strong></a>
</div>
<!--Copy & Paste Empty Slot-->
<div class="app-item" id="incomplete">
<a href="apps/appPath/index.html" target="_blank">
<img src="apps/img/placeholder.png" alt="appName">
</a>
<a class="app-links" href="apps/gamePath/index.html" target="_blank"><strong>appName</strong></a>
</div>
</div>
<!--Ad Segment Start-->
<br><center><script>
var afg={};afg.u=6328;afg.s=4;
document.write("<sc"+"ript src='//js.adforgames.com/cd.js'></sc"+"ript>");
</script></center><br>
<!--Ad Segment End-->
<!--Footer Start-->
<footer class="footer">
<div class="footer-about">
<p>Welcome to Project Hub, your ultimate destination for tailored unblocked games! With over 60 games and counting, we are committed to providing you with a personalized gaming experience that suits your preferences and interests. Our site is constantly updated with new additions to ensure a fresh and exciting selection of games. We highly value user feedback and actively incorporate it to enhance your gaming journey. Get ready to embark on a thrilling adventure as you explore the world of Project Hub, where every game is tailored to you. Let the fun begin!</p>
</div>
<p>Christian Santangelo <i class="fa-regular fa-copyright"></i></p>
<p>Disclaimer: This site should not be used during school/work, and I am not responsible for the users on this site.</p>
<div class="footer-link">
<a href="https://github.com/unbl0ck">GitHub Profile</a>
<a href="privacy.html">Privacy Notice</a>
</div>
</footer>
<!--Footer End-->
<!--AOS Library-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>