HTML _CSS
GROWING LEON APPLE ICON
HiroDaegu
2022. 6. 6. 00:52
728x90
SMALL

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GROWING NEON APPLE ICON</title>
<link rel="stylesheet" href="style.css">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"
/>
</head>
<body>
<div class="logo">
<i class="fab fa-apple"></i>
</div>
</body>
</html>
.logo {
font-size: 8rem;
text-shadow: 0 0 100px;
animation: animate 2s infinite linear;
margin:25% 50%;
}
@keyframes animate {
0%, 100% {
color: lawngreen;
}
25% {
color: deeppink;
}
50% {
color: deepskyblue;
}
75% {
color: white;
}
}728x90
LIST