Calculator Tools Calculator Tools
Create

Meu App Divertido

Jan 3, 2024

About this app

Um app divertido com botões interativos

Meu App Divertido Bem-vindo ao Meu App Divertido! Aperte no botão "Like" para ir para o Globo.com Ou aperte no botão "Inscreva-se" para ir para o Plimplim.tv

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>Meu App Divertido</title>
<meta name="description" content="Um app divertido com botões interativos">
<meta name="keywords" content="app, divertido, botões, interativos">

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

<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() {
// Function to redirect to Globo.com
function goToGlobo() {
window.location.href = "https://www.globo.com";
}

// Function to redirect to Plimplim.tv
function goToPlimplim() {
window.location.href = "https://www.plimplim.tv";
}
});

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

<style>
/* App CSS Goes Here */
body {
font-family: 'Arial', sans-serif;
background-color: #f2f2f2;
text-align: center;
}

.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}

h1 {
color: #333;
}

.button-container {
margin-top: 20px;
}

.button {
display: inline-block;
padding: 10px 20px;
background-color: #ff5c5c;
color: #fff;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}

.button:hover {
background-color: #e60000;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Bem-vindo ao Meu App Divertido!</h1>
<p>Aperte no botão "Like" para ir para o <a href="https://www.globo.com" class="button">Globo.com</a></p>
<p>Ou aperte no botão "Inscreva-se" para ir para o <a href="https://www.plimplim.tv" class="button">Plimplim.tv</a></p>
</div>
</body>
</html>