-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
135 lines (118 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prodidows Homepage</title>
<style>
/* General Styles */
body {
font-family: BrianneTod, PipeDream;
margin: 0;
padding: 0;
background-color: #f4f7fc;
color: #333;
}
h1, p {
margin: 0;
padding: 10px 20px;
text-align: center;
}
/* Toolbar styles */
.toolbar {
background-color: #0066cc;
display: flex;
justify-content: center;
align-items: center;
padding: 15px 0;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.toolbar button {
color: white;
text-align: center;
padding: 12px 20px;
border: none;
background-color: #0066cc;
cursor: pointer;
margin: 0 10px;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.2s;
}
.toolbar button:hover {
background-color: #004b8d;
transform: scale(1.1);
}
.toolbar button:focus {
outline: none;
}
/* Layout Improvements for Main Section */
main {
padding: 20px;
max-width: 1200px;
margin: 30px auto;
}
.intro-section {
text-align: center;
margin-bottom: 40px;
}
.intro-section h1 {
font-size: 36px;
color: #0066cc;
}
.intro-section p {
font-size: 18px;
color: #555;
}
/* Footer Section */
footer {
background-color: #333;
color: white;
padding: 20px 0;
text-align: center;
}
footer a {
color: #ffffff;
text-decoration: none;
margin: 0 10px;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}
/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
.toolbar {
flex-direction: column;
}
.toolbar button {
margin: 10px 0;
}
}
</style>
</head>
<body>
<!-- Toolbar Section -->
<div class="toolbar">
<button onclick="window.location.href='https://xpmuser.github.io/'">Home</button>
<button onclick="window.location.href='https://xpmuser.github.io/prodidows/ProdidowsOnline/'">Prodidows Online</button>
<button onclick="window.location.href='https://xpmuser.github.io/prodidows/versions/'">Versions</button>
<button onclick="window.location.href='https://www.youtube.com/@ProdidowsMathGame'">Subscribe to YouTube</button>
<button onclick="window.location.href='https://x.com/ProdidowsD/'">Follow on Twitter</button>
<button onclick="window.location.href='https://discord.gg/g2XHgKgrYA'">Join Discord</button>
</div>
<!-- Main Section with Introduction -->
<main>
<div class="intro-section">
<h1>Welcome to Prodidows!</h1>
<p>Explore exciting features and play the most up-to-date versions of Prodidows and Prodigy right here! Stay connected, get early access, and join the community.</p>
</div>
</main>
<!-- Footer Section -->
<footer>
<p><a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a></p>
</footer>
</body>
</html>