🌈Rainbow Text 🌈| HTML & CSS | Coding 🔥#shorts

preview_player
Показать описание
Create your own Rainbow text using #html and #css. Come #programming wth the @MindfulProgrammer
Рекомендации по теме
Комментарии
Автор

<!DOCTYPE html>
<html lang="en">
<head>
<link
rel="stylesheet"
/>

<style>
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
margin: 0;
background: #202124;
}

.text {
font-family: "Kanit", sans-serif;
font-size: 0.7rem;
letter-spacing: -0.5px;
}

.text p {
animation-name: rainbow;
animation-duration: 1.6s;
animation-iteration-count: infinite;
animation-timing-function: cubic-bezier(0.61, 0.36, 0.26, 0.53);
padding: 5px;
background: linear-gradient(
90deg,
rgba(65, 65, 204, 1) 0%,
rgba(246, 0, 0, 1) 10%,
rgba(255, 140, 0, 1) 25%,
rgba(255, 238, 0, 1) 38%,
rgba(77, 233, 76, 1) 45%,
rgba(55, 131, 255, 1) 60%,
rgba(65, 65, 204, 1) 75%,
rgba(246, 0, 0, 1) 85%,
rgba(255, 140, 0, 1) 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-size: 400% 400%;
}

@keyframes rainbow {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
</style>
</head>
<body>
<div class="text"><p>Mindful Programmer</p></div>
</body>
</html>

MindfulProgrammer
Автор

Chill bro you definitely deserve a sub❤🎉😂

lames
join shbcf.ru