Calculator Tools Calculator Tools
Create

Boi Boi Boi App

Jan 3, 2024

About this app

A fun app where you can show your support by giving likes and avoiding vaccines

Boi Boi Boi App Boi Boi Boi App Boi da cara preta quem não deixa o like vai tomar vacina 0 Like Vaccine

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>Boi Boi Boi App</title>
<meta name="description" content="A fun app where you can show your support by giving likes and avoiding vaccines">
<meta name="keywords" content="boi, like, vaccine, support">

<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.
$(document).ready(function() {
// Function to handle like button click
$('#like-btn').click(function() {
// Increase the like count by 1
var currentCount = parseInt($('#like-count').text());
$('#like-count').text(currentCount + 1);
});

// Function to handle vaccine button click
$('#vaccine-btn').click(function() {
// Display a message
$('#message').text("You are safe from vaccines!");
});
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>

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

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

h1 {
font-size: 24px;
margin-bottom: 20px;
}

.btn {
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
}

.btn-primary {
background-color: #FF4081;
border: none;
color: #FFF;
}

.btn-primary:hover {
background-color: #FF2D6F;
}

.btn-success {
background-color: #4CAF50;
border: none;
color: #FFF;
}

.btn-success:hover {
background-color: #45A049;
}

#like-count {
font-size: 48px;
margin-bottom: 20px;
}

#message {
font-size: 18px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Boi Boi Boi App</h1>
<p>Boi da cara preta quem não deixa o like vai tomar vacina</p>
<div id="like-count">0</div>
<button id="like-btn" class="btn btn-primary"><i class="fa fa-thumbs-up"></i> Like</button>
<button id="vaccine-btn" class="btn btn-success"><i class="fa fa-syringe"></i> Vaccine</button>
<div id="message"></div>
</div>
</body>
</html>