-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMessi4.html
59 lines (54 loc) · 1.53 KB
/
Messi4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legend Messi</title>
<style>
/* MacBook Aesthetic Styles */
body {
margin: 0;
padding: 0;
font-family: "San Francisco", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #f5f5f7;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.container {
text-align: center;
animation: fadeIn 1.5s ease-out;
}
h1 {
font-size: 3rem;
font-weight: 600;
margin: 0;
color: #1d1d1f;
}
p {
font-size: 1.2rem;
color: #6e6e73;
}
@keyframes fadeIn {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
footer {
position: absolute;
bottom: 10px;
font-size: 0.8rem;
color: #a1a1a6;
}
</style>
</head>
<body>
<div class="container">
<h1>Legend Messi, Lionel Andres Messi Cuccittini</h1>
<p>For the fans of the greatest of all time, the real GOAT, the only GOAT, the one and ONLY</p>
</div>
<footer>© 2024 Messi Fans Page</footer>
</body>
</html>