Calculator Tools Calculator Tools
Create

Stumble Guys and JunyTony App

Sep 18, 2023

About this app

Experience the fun and excitement of Stumble Guys and JunyTony!

Stumble Guys and JunyTony App Welcome to Stumble Guys and JunyTony! Stumble Guys Experience the chaos and fun of Stumble Guys as you navigate through obstacle courses and race against other players! JunyTony Join JunyTony on their adventures and help them solve puzzles, collect treasures, and defeat enemies in this exciting platform game! Play Now

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>Stumble Guys and JunyTony App</title>
<meta name="description" content="Experience the fun and excitement of Stumble Guys and JunyTony!">
<meta name="keywords" content="Stumble Guys, JunyTony, game, fun, excitement">

<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.2/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">

<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.

// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {

});

} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

<style>
/* App CSS Goes Here */
body {
background-color: #F3F5F7;
font-family: 'Press Start 2P', cursive;
}

.container {
text-align: center;
padding: 50px;
}

h1 {
font-size: 32px;
color: #ED1C24;
}

.game-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
}

.game-icon {
font-size: 80px;
color: #ED1C24;
margin-right: 20px;
}

.game-title {
font-size: 24px;
color: #000;
}

.game-description {
margin-top: 10px;
font-size: 18px;
color: #666;
}

.btn-play {
margin-top: 30px;
}

.btn-play a {
display: inline-block;
padding: 10px 30px;
background-color: #ED1C24;
color: #FFF;
text-decoration: none;
font-size: 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.btn-play a:hover {
background-color: #C4161C;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Welcome to Stumble Guys and JunyTony!</h1>

<div class="game-container">
<i class="fa fa-gamepad game-icon"></i>
<div>
<h2 class="game-title">Stumble Guys</h2>
<p class="game-description">Experience the chaos and fun of Stumble Guys as you navigate through obstacle courses and race against other players!</p>
</div>
</div>

<div class="game-container">
<i class="fa fa-gamepad game-icon"></i>
<div>
<h2 class="game-title">JunyTony</h2>
<p class="game-description">Join JunyTony on their adventures and help them solve puzzles, collect treasures, and defeat enemies in this exciting platform game!</p>
</div>
</div>

<div class="btn-play">
<a href="#">Play Now</a>
</div>
</div>
</body>
</html>