-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
74 lines (74 loc) · 2.35 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Linked1</title>
<meta charset="UTF-8">
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #02133e;
color: white;
font-size: 130%;
}
@font-face {
font-family: 'CustomFont';
src: url('bl.ttf') format('truetype');
}
h2 {
font-family: 'CustomFont', Arial, sans-serif;
}
ul {
list-style-type: none;
padding: 0;
}
ul li a {
text-decoration: none;
color: white;
transition: color 0.3s ease;
}
ul li a:hover {
color: lime;
}
.button-container {
display: flex;
justify-content: center;
margin-top: 40px;
}
.button {
background-color: white;
border: none;
color: #02133e;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
margin: 0 10px;
border-radius: 15px;
}
.logo {
margin-top: 20px;
}
.about-container {
max-width: 800px;
margin: 40px auto 20px;
padding: 20px;
border: 2px solid white;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="button-container">
<button class="button" onclick="window.location.href='index.html'">Home</button>
<button class="button" onclick="window.location.href='games.html'">Games</button>
<button class="button" onclick="window.location.href='prx.html'">Proxies</button>
<button class="button" onclick="window.location.href='request.html'">Request</button>
<button class="button" onclick="window.location.href='about.html'">About</button>
<button class="button" onclick="window.location.href='contact.html'">Contact</button>
</div>
<div class="about-container">
<h2>About</h2>
<p>My site's purpose is to post updated and unblocked links of game sites or proxies. I have been doing this for 3 months, and my site has improved much more from then. We now host games directly on the vercel.app links so techincally we are a game site too</p>
</div>
</body>
</html>