Calculator Tools Calculator Tools
Create

Flying Horse App

Nov 7, 2023

About this app

An animated flying horse emoji web app with a colorful background.

Flying Horse App

Related apps

Put this on your site

Source

                    <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>Flying Horse App</title>
<meta name="description" content="An animated flying horse emoji web app with a colorful background.">
<meta name="keywords" content="Animation, Emoji, Horse, Flying, Web App">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

<style>
@import url('https://fonts.googleapis.com/css2?family=Shadows+Into+Light&display=swap');
body {
background: linear-gradient(90deg, rgba(255,187,0,1) 0%, rgba(255,87,34,1) 100%);
font-family: 'Shadows Into Light', cursive;
}
#main-container {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 4em;
}
.horse {
animation: horse-fly 2s infinite;
}
@keyframes horse-fly {
0% { transform: translateY(0); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0); }
}
</style>

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
document.getElementById("main-container").innerHTML = '<span class="horse">🐎</span>';
});
} catch (error) {
throw error;
}
</script>
</head>
<body>
<div id="main-container" class="container text-center"></div>
</body>
</html>