Calculator Tools Calculator Tools
Create

Holly and Gaston

Aug 12, 2026

About this app

A fun and messy adventure with Holly and Gaston

Holly and Gaston Holly and Gaston 🐶Gaston is crying. 🧚‍♀️What did he say? 🧙‍♀️He said he loved his home just as it was. All messy and smelly. 🧚‍♀️Oh! Sorry Gaston. 🧒Don't worry... We'll make it just the way you like it. 🧚‍♀️Yes! We're very good at making things messy. 🧒This is fun! 🧚‍♀️A cobweb here, a cobweb there. Brilliant! 🧙‍♀️Zip, zap, zeffy... Gaston's bed, nice and messy. Start Over

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>Holly and Gaston</title>
<meta name="description" content="A fun and messy adventure with Holly and Gaston">
<meta name="keywords" content="Holly, Gaston, adventure, messy, fun">

<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">

<!-- Built-In Functions for Apps -->
<script type="text/javascript">
var localStoragePrefix = "ct-169202454420065";
var lastSave = 0;
// save to localstorage
function saveLocal(data) {
if (Date.now() - lastSave < 1000) {
return;
}
// save to cookie
let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict";
cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString();
document.cookie = cookie;
lastSave = Date.now();
}

// load from localstorage
function loadLocal() {
var cookiePrefix = localStoragePrefix + "=";
var cookieStart = document.cookie.indexOf(cookiePrefix);
if (cookieStart > -1) {
let cookieEnd = document.cookie.indexOf(";", cookieStart);
if (cookieEnd == -1) {
cookieEnd = document.cookie.length;
}
var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd);
return JSON.parse(cookieData);
}
}
</script>

<script type="text/javascript">
// App Javascript Goes Here
</script>

<style>
/* App CSS Goes Here */
body {
background-color: #f4f4f4;
font-family: 'Roboto', sans-serif;
color: #333;
margin: 0;
padding: 0;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}

h1 {
font-size: 32px;
font-weight: bold;
margin-bottom: 20px;
}

p {
font-size: 18px;
margin-bottom: 10px;
}

.btn {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
background-color: #ff6767;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.btn:hover {
background-color: #ff4d4d;
}

.emoji {
font-size: 24px;
margin-right: 5px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Holly and Gaston</h1>
<p><span class="emoji">🐶</span>Gaston is crying.</p>
<p><span class="emoji">🧚‍♀️</span>What did he say?</p>
<p><span class="emoji">🧙‍♀️</span>He said he loved his home just as it was. All messy and smelly.</p>
<p><span class="emoji">🧚‍♀️</span>Oh! Sorry Gaston.</p>
<p><span class="emoji">🧒</span>Don't worry... We'll make it just the way you like it.</p>
<p><span class="emoji">🧚‍♀️</span>Yes! We're very good at making things messy.</p>
<p><span class="emoji">🧒</span>This is fun!</p>
<p><span class="emoji">🧚‍♀️</span>A cobweb here, a cobweb there. Brilliant!</p>
<p><span class="emoji">🧙‍♀️</span>Zip, zap, zeffy... Gaston's bed, nice and messy.</p>
<button class="btn">Start Over</button>
</div>

<script type="text/javascript">
$(document).ready(function(){
$('.btn').click(function(){
location.reload();
});
});
</script>
</body>
</html>