Green Number 4
About this app
A single page web app displaying a green number 4 in Arial Bold Font.
Green Number 4 4
Related apps
Put this on your site
Source
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Green Number 4</title>
<meta name="description" content="A single page web app displaying a green number 4 in Arial Bold Font.">
<meta name="keywords" content="green, number 4, Arial Bold, web app">
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #e4f9f5;
}
.number-4 {
font-family: 'Arial', sans-serif;
font-weight: bold;
font-size: 20rem;
color: #34eb83;
user-select: none;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.1);
opacity: 0.85;
}
100% {
transform: scale(1);
opacity: 1;
}
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="number-4">4</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!