0% found this document useful (0 votes)
5 views2 pages

Texte 2

This document is an HTML template for a webpage titled 'Lyrical Lemonade'. It features a visually appealing design with a gradient background, animated text, and a moving background effect. The layout is centered and responsive, optimized for various screen sizes.

Uploaded by

angonoangono5
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views2 pages

Texte 2

This document is an HTML template for a webpage titled 'Lyrical Lemonade'. It features a visually appealing design with a gradient background, animated text, and a moving background effect. The layout is centered and responsive, optimized for various screen sizes.

Uploaded by

angonoangono5
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lyrical Lemonade Style</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
color: #fff;
overflow: hidden;
}

.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}

h1 {
font-size: 4rem;
animation: bounce 2s infinite;
}

@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}

.background-effect {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, transparent 20%, #000 20%, #000
80%, transparent 80%, transparent),
radial-gradient(circle, transparent 20%, #000 20%, #000
80%, transparent 80%, transparent) 50px 50px;
background-size: 100px 100px;
animation: moveBackground 4s linear infinite;
z-index: -1;
}

@keyframes moveBackground {
0% {
transform: translateY(0);
}
100% {
transform: translateY(100px);
}
}
</style>
</head>
<body>
<div class="background-effect"></div>
<div class="container">
<h1>Lyrical Lemonade</h1>
</div>
</body>
</html>

You might also like