-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
67 lines (64 loc) · 1.79 KB
/
Copy pathabout.html
File metadata and controls
67 lines (64 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About</title>
<style>
body {
margin: 0;
padding: 0;
text-align: center;
background: linear-gradient(135deg, #001f1f, #000000);
color: #00ffcc;
font-family: Arial, sans-serif;
border: 5px solid;
border-image: linear-gradient(90deg, #00ffcc, #00ccff) 1;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
animation: fadeInDown 2s ease-in-out;
}
p {
max-width: 600px;
margin: 20px;
font-size: 1.1em;
line-height: 1.6;
}
a {
text-decoration: none;
color: #00ffcc;
font-size: 1.2em;
background: rgba(0, 255, 204, 0.1);
padding: 8px 16px;
border-radius: 8px;
transition: background 0.3s;
}
a:hover {
background: rgba(0, 255, 204, 0.3);
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body>
<h1>ℹ️ About </h1>
<p>
Welcome to <strong>ProjectBerry 2.0</strong> — a dedicated web appstore for <strong>BlackBerry 10 devices</strong>.<br>
Here, you can find all the apps, APKs, games etc, I provide in my videos, all in one convenient place.
<br>Explore, download, and elevate your BB10 experience!
</p>
<p>
If you enjoy this webstore, consider following me on my YouTube channel
and connecting on my other social platforms to stay updated with the latest apps, tutorials, and releases.
</p>
<a href="index.html">⬅ Back to Home</a>
</body>
</html>