forked from Daboss7173/Daboss7173.github.io
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
95 lines (84 loc) · 2.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Old Prodigy Menu</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: BrianneTod, Pipe Dream;
background-image: url("https://xpmuser.github.io/oldprodigy/images/Background.png");
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
margin: auto;
height: 100%;
background-color: #627CDE;
}
header {
background-color: #0066cc;
color: #fff;
padding: 20px 0;
text-align: center;
font-size: 24px;
}
nav {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
margin-top: 30px;
}
nav a {
color: #fff;
text-decoration: none;
padding: 15px 30px;
background: linear-gradient(135deg, #0073e6, #005bb5);
border-radius: 10px;
width: 260px;
text-align: center;
font-size: 20px;
font-weight: bold;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
border: 2px solid #004a99;
}
nav a:hover {
background: linear-gradient(135deg, #005bb5, #003f80);
transform: scale(1.05);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
footer {
color: #fff;
text-align: center;
padding: 20px 0;
margin-top: 50px;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>Old Prodigy Menu</h1>
</header>
<main>
<nav>
<a href="https://xpmuser.github.io/Website-Tester/" target="_blank">Old Prodigy/Prodidows Insider Program</a>
<a href="https://xpmuser.github.io/oldprodigy/select/" target="_blank">Select a Version</a>
<a href="https://xpmuser.github.io/prodidows/" target="_blank">Prodidows</a>
<a href="https://github.com/XPMUser/XPMUser.github.io/issues" target="_blank">Send Feedback</a>
<a href="https://www.youtube.com/channel/UC0dCD_TrUDVQpFCTK6Lyz7Q?sub_confirmation=1" target="_blank">Subscribe</a>
</nav>
</main>
<footer>
</footer>
</body>
</html>