Calculator Tools Calculator Tools
Create

Um herói do coração - Plim Plim

Jan 3, 2024

About this app

Um aplicativo divertido e interativo com o tema do herói do coração - Plim Plim.

Um herói do coração - Plim Plim Um herói do coração - Plim Plim Um aplicativo divertido e interativo com o tema do herói do coração - Plim Plim. Clique Aqui

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>Um herói do coração - Plim Plim</title>
<meta name="description" content="Um aplicativo divertido e interativo com o tema do herói do coração - Plim Plim.">
<meta name="keywords" content="herói, coração, Plim Plim, aplicativo">

<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/css2?family=Roboto&display=swap" 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 handle button click
function handleClick() {
alert("Você clicou no botão!");
}

// Add event listener to button
var button = document.getElementById("button");
button.addEventListener("click", handleClick);
});

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

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

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

h1 {
color: #ff4081;
font-size: 32px;
margin-bottom: 20px;
}

p {
color: #333;
font-size: 18px;
margin-bottom: 20px;
}

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

.btn:hover {
background-color: #ff80ab;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Um herói do coração - Plim Plim</h1>
<p>Um aplicativo divertido e interativo com o tema do herói do coração - Plim Plim.</p>
<button id="button" class="btn">Clique Aqui</button>
</div>
</body>
</html>