Calculator Tools Calculator Tools
Create

O Mr Comilão

Jan 3, 2024

About this app

O Mr Comilão - Vai comer Juny ou Tony ou Juntos

O Mr Comilão O Mr Comilão vai comer quem? Juny Tony Juntos

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>O Mr Comilão</title>
<meta name="description" content="O Mr Comilão - Vai comer Juny ou Tony ou Juntos">
<meta name="keywords" content="Mr Comilão, Comer, Juny, Tony, Juntos">

<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">
<link href="https://fonts.googleapis.com/css?family=Pacifico" 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() {
// Add event listeners to the buttons
var btnJuny = document.getElementById("btn-juny");
var btnTony = document.getElementById("btn-tony");
var btnJuntos = document.getElementById("btn-juntos");

btnJuny.addEventListener("click", function() {
alert("O Mr Comilão vai comer a Juny!");
});

btnTony.addEventListener("click", function() {
alert("O Mr Comilão vai comer o Tony!");
});

btnJuntos.addEventListener("click", function() {
alert("O Mr Comilão vai comer Juny e Tony juntos!");
});
});

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

<style>
body {
background-color: #f5f5f5;
font-family: 'Pacifico', cursive;
}

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

h1 {
color: #333;
}

.btn {
margin-top: 20px;
font-size: 24px;
padding: 10px 30px;
border-radius: 5px;
cursor: pointer;
background-color: #ff5c5c;
border: none;
color: #fff;
transition: background-color 0.3s ease;
}

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

.btn i {
margin-right: 10px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>O Mr Comilão vai comer quem?</h1>
<button id="btn-juny" class="btn"><i class="fa fa-cutlery"></i>Juny</button>
<button id="btn-tony" class="btn"><i class="fa fa-cutlery"></i>Tony</button>
<button id="btn-juntos" class="btn"><i class="fa fa-cutlery"></i>Juntos</button>
</div>
</body>
</html>