-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.html
186 lines (161 loc) · 5.67 KB
/
footer.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
175
176
177
178
179
180
181
182
183
184
185
186
<html>
<head>
<style>
/* Footer Styles */
footer {
background: #111;
color: #fff;
padding: 20px 0;
text-align: center;
font-family: 'Arial', sans-serif;
height: auto;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.footer-container p {
font-size: 0.9rem;
margin: 5px 0;
color: #aaa;
line-height: 1.5;
}
.footer-container a {
color: #e91e63;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
display : contents;
}
.footer-container a:hover {
color: #fff;
}
footer nav {
margin-top: 10px;
display: flex;
justify-content: center;
gap: 20px;
}
footer nav a {
font-size: 0.95rem;
padding: 8px 15px;
color: #fff;
transition: background 0.3s, color 0.3s;
border-radius: 4px;
text-transform: uppercase;
}
footer nav a:hover {
background: #e91e63;
color: #fff;
}
/* Footer Genres Section */
.footer-genres {
margin-top: 15px;
text-align: center;
}
.footer-genres h3 {
font-size: 1.2rem;
color: #e91e63;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 1px;
}
.footer-genres ul {
list-style-type: none;
padding: 0;
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.footer-genres li a {
color: #fff;
text-decoration: none;
font-size: 0.9rem;
padding: 6px 12px;
border-radius: 4px;
background: rgba(255, 255, 255, 0.1);
transition: background 0.3s, color 0.3s;
}
.footer-genres li a:hover {
background: #e91e63;
color: #fff;
}
/* Mobile Styles */
@media (max-width: 768px) {
footer {
padding: 15px 0;
}
.footer-container p {
font-size: 0.85rem;
margin: 2px 0;
}
footer nav {
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
footer nav a {
font-size: 0.95rem;
padding: 10px;
display: block;
}
.footer-genres h3 {
font-size: 1rem;
margin-bottom: 10px;
}
.footer-genres ul {
flex-direction: column;
gap: 10px;
}
.footer-genres li a {
font-size: 0.9rem;
padding: 6px 10px;
}
}
/* Extra small screen (phones in portrait mode) */
@media (max-width: 480px) {
footer {
padding: 10px 0;
}
footer nav a {
font-size: 0.85rem;
padding: 8px;
}
.footer-genres h3 {
font-size: 0.95rem;
margin-bottom: 8px;
}
.footer-genres ul {
padding: 0 10px;
}
.footer-genres li a {
font-size: 0.85rem;
padding: 5px 8px;
}
}
</style>
</head>
<body>
<footer>
<div class="footer-container">
<nav>
<a href="home.php">Home</a>
<a href="about.php">About</a>
</nav>
</div>
<div class="footer-genres">
<h4>Explore Genres</h4>
<ul>
<li><a href="genre.php?name=action&page=1">Action</a> <a href="genre.php?name=shounen&page=1">Shounen</a> <a href="genre.php?name=romance&page=1">Romance</a> <a href="genre.php?name=adventure&page=1">Adventure</a> <a href="genre.php?name=fantasy&page=1">Fantasy</a></li>
<!--<li><a href="genre.php?name=shounen&page=1">Shounen</a></li>-->
<!--<li><a href="genre.php?name=romance&page=1">Romance</a></li>-->
<!--<li><a href="genre.php?name=adventure&page=1">Adventure</a></li>-->
<!--<li><a href="genre.php?name=fantasy&page=1">Fantasy</a></li>-->
</ul>
</div>
<p>© <?= date('Y') ?> Anime World | Developed by <a href="https://github.com/Siddhartha6909" target="_blank">Siddhartha Tiwari</a> Powered by <a href="https://tohost.in">Tohost Cloud Services</a></p>
</footer>
</body>
</html>