-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
174 lines (151 loc) · 4.74 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Old Prodigy/Prodidows Insider Program</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: BrianneTod, Pipe Dream;
margin: 0;
padding: 0;
background-color: #f0f4f8;
}
header {
background-color: #0066cc;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 10px;
}
nav a, .dropdown {
color: #fff;
text-decoration: none;
padding: 10px 15px;
border-radius: 5px;
position: relative;
}
nav a:hover, .dropdown:hover .dropbtn {
background-color: #004d99;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #0066cc;
min-width: 150px;
box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: white;
padding: 10px;
display: block;
text-align: left;
text-decoration: none;
}
.dropdown-content a:hover {
background-color: #004d99;
}
.dropdown:hover .dropdown-content {
display: block;
}
.main-content {
padding: 50px 20px;
text-align: center;
}
h2 {
color: #333;
}
.cta-button {
display: inline-block;
background-color: #0066cc;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
}
.cta-button:hover {
background-color: #004d99;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
margin-top: 40px;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
section {
margin-bottom: 30px;
}
.icon {
font-size: 50px;
color: #0066cc;
margin-bottom: 10px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to the Old Prodigy/Prodidows Insider Program</h1>
<nav>
<a href="index.html">Home</a>
<a href="play.html?mods=WalkSpeed">Play Now</a>
<div class="dropdown">
<span class="dropbtn">Versions ▼</span>
<div class="dropdown-content">
<a href="pde1.51.0/index.html">PDE 1.51.0</a>
<a href="pde1500/index.html?mods=WalkSpeed,FastGameSpeed,RebalancedBattles">PDE1500</a>
<a href="pde/index.html">PDE</a>
<a href="pde1700/index.html?mods=WalkSpeed,FastGameSpeed,ImitationTitan">PDE1700</a>
<a href="oldprodigyde/index.html?mods=FastGameSpeed">Old Prodigy DE</a>
</div>
</div>
<a href="mods.html">Mods</a>
<a href="prodidows.html">Prodidows</a> <!-- New Prodidows tab -->
</nav>
</header>
<main class="main-content">
<section>
<h2>About This Site</h2>
<p>This is your gateway to the latest Old Prodigy or Prodidows versions before the public release. Join now to test and experience early builds of the game!</p>
</section>
<section>
<h2>Why Join?</h2>
<div>
<div class="icon">🎮</div>
<p>Get early access to upcoming features and game modes.</p>
</div>
<div>
<div class="icon">🔧</div>
<p>Be part of the testing team and help improve the game with feedback.</p>
</div>
<div>
<div class="icon">💾</div>
<p>Save your character progress and enjoy continuous updates. (Coming soon!)</p>
</div>
</section>
<section>
<h2>Get Started</h2>
<p>If you don't have an account, <a href="signup.html" class="cta-button">Sign Up Here</a></p>
<p>If you're already a member, <a href="login.html" class="cta-button">Login Now</a></p>
</section>
</main>
<footer>
<p><a href="contact.html">Contact Us</a></p>
</footer>
</body>
</html>