html
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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="me">
<h1>Guys do you<br /> agree that <br />sometimes the <br />best codes <br />arise from <br />mistakes?</h1>
</div>
<script>
for(i=0;i<200;i++){
let span = document.createElement('span');
span.className = 'rain';
span.innerHTML = '🌸';
document.body.appendChild(span);
span.style.animationDelay = Math.random()*10+'s';
span.style.left = Math.random()*100+'vw';
span.style.top = Math.random()*100+'vh';
}
</script>
</body>
</html>
css
css
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
body {
font-family: Playfair Display, Georgia, serif;
background-image: linear-gradient(to left,#FFC5C5, #FFB6C1, #FF99CC, #FF69B4);
background-size: 200% 200%;
animation: animate-background 10s ease-in-out infinite;
height: 100vh;
overflow: hidden;
}
@keyframes animate-background{
0%{
background-position: 0% 50%;
}
50%{background-position: 100% 50%;
}
100%{background-position: 0% 50%;
}
}
.me {
margin: 50vh auto 0;
text-align: center;
js
js
1
alert("Guys I hope it's not only me that thinks this way😂")
BROWSER
Console
Run