<head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');
</style>
<body>
<p>
<center>
<h1> Heaven </h1>
<h2>
<center> is a warm place<br>
with Wifi.</center>
<h2>
</center>
</p>
</body>
<img src="https://w7.pngwing.com/pngs/488/305/png-transparent-black-and-white-wifi-wi-fi-computer-icons-wireless-symbol-wifi-miscellaneous-computer-network-mobile-phones-thumbnail.png">
index.html
body {
background-color: powderblue;
justify-content: center;
align-items: center;
font-family: Amatic SC;
font-size: 2rem;
text-align: center;
}
img {
animation: pulse 4s linear infinite;
}
@keyframes pulse {
0% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
50% {
-webkit-transform: scale(0.8);
transform: scale(0.8);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}