-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatured.html
More file actions
127 lines (113 loc) · 2.46 KB
/
featured.html
File metadata and controls
127 lines (113 loc) · 2.46 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Memestash</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@500;700&display=swap" rel="stylesheet" />
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Outfit', sans-serif;
background: linear-gradient(135deg, #fafafa, #e0f7fa);
color: #222;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
header {
background: #111;
color: white;
padding: 50px 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
width: 100%;
max-width: 900px;
border-radius: 16px;
}
header h1 {
font-size: 3rem;
margin-bottom: 10px;
letter-spacing: 1px;
}
header p {
font-size: 1.2rem;
color: #ddd;
}
.hero {
margin: 40px auto 20px;
max-width: 800px;
width: 100%;
}
.hero img {
width: 100%;
max-width: 750px;
border-radius: 18px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.buttons {
margin: 50px 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 25px;
width: 100%;
max-width: 700px;
}
.buttons a {
display: inline-block;
background: #00796b;
color: white;
padding: 15px 40px;
border-radius: 12px;
font-size: 1.3rem;
text-decoration: none;
transition: all 0.25s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
font-weight: 600;
}
.buttons a:hover {
background: #004d40;
transform: translateY(-2px) scale(1.05);
}
footer {
margin-top: auto;
padding: 20px;
font-size: 0.9rem;
color: #666;
width: 100%;
max-width: 900px;
text-align: center;
}
@media (max-width: 500px) {
header h1 {
font-size: 2rem;
}
.buttons a {
padding: 12px 30px;
font-size: 1.1rem;
}
}
</style>
</head>
<body>
<header>
<h1>Featured</h1>
</header>
<div class="hero">
<img src="meme3.png" alt="? FIle was modified or deleted." />
</div>
<div class="buttons">
<a href="index.html">Home</a>
</div>
<footer>
© 2025 Memestash by Baconyy11
</footer>
</body>
</html>