Calculator Tools Calculator Tools
Create

Batalha de Desenhos: PlimPlim vs Mussoumano

Jan 2, 2024

About this app

Participe da batalha de desenhos entre PlimPlim e Mussoumano. Escolha o seu personagem favorito e mostre suas habilidades artísticas.

Batalha de Desenhos: PlimPlim vs Mussoumano Batalha de Desenhos: PlimPlim vs Mussoumano Escolha o seu personagem favorito e mostre suas habilidades artísticas. PlimPlim Mussoumano

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>Batalha de Desenhos: PlimPlim vs Mussoumano</title>
<meta name="description" content="Participe da batalha de desenhos entre PlimPlim e Mussoumano. Escolha o seu personagem favorito e mostre suas habilidades artísticas.">
<meta name="keywords" content="batalha de desenhos, PlimPlim, Mussoumano, desenhos, personagens, habilidades artísticas">

<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 {
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Function to handle the character selection
function selectCharacter(character) {
$(".character").removeClass("selected");
$(character).addClass("selected");
}
});

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

<style>
body {
background-color: #f0f0f0;
font-family: 'Roboto', sans-serif;
}

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

h1 {
color: #333;
font-size: 28px;
margin-bottom: 20px;
}

.character {
display: inline-block;
width: 200px;
height: 200px;
background-color: #fff;
border: 2px solid #333;
border-radius: 50%;
margin: 10px;
cursor: pointer;
transition: transform 0.3s;
}

.character:hover {
transform: scale(1.1);
}

.character.selected {
border-color: #ff8c00;
box-shadow: 0 0 10px #ff8c00;
}

.character img {
width: 120px;
height: 120px;
margin-top: 40px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Batalha de Desenhos: PlimPlim vs Mussoumano</h1>
<p>Escolha o seu personagem favorito e mostre suas habilidades artísticas.</p>

<div class="character" onclick="selectCharacter(this)">
<img src="https://via.placeholder.com/120">
<h3>PlimPlim</h3>
</div>

<div class="character" onclick="selectCharacter(this)">
<img src="https://via.placeholder.com/120">
<h3>Mussoumano</h3>
</div>
</div>
</body>
</html>