Calculator Tools Calculator Tools
Create

JunyTony vs Pocoyo

Sep 18, 2023

About this app

Join the epic battle between JunyTony and Pocoyo

JunyTony vs Pocoyo JunyTony vs Pocoyo JunyTony The fearless superhero ready to take on any challenge! Pocoyo The mischievous little boy with a heart full of curiosity! Choose your side and join the epic battle between JunyTony and Pocoyo! Join the Battle

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>JunyTony vs Pocoyo</title>
<meta name="description" content="Join the epic battle between JunyTony and Pocoyo">
<meta name="keywords" content="JunyTony, Pocoyo, battle, epic, fun">

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

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

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

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

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

.btn {
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
background-color: #2196f3;
color: #fff;
text-decoration: none;
transition: background-color 0.3s ease;
}

.btn:hover {
background-color: #1976d2;
}

.vs-icon {
font-size: 100px;
margin-bottom: 20px;
}

.logo {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 20px;
}

.player-name {
font-size: 24px;
margin-bottom: 10px;
color: #333;
}

.player-desc {
font-size: 18px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>JunyTony vs Pocoyo</h1>
<div class="row">
<div class="col-md-6">
<img src="https://via.placeholder.com/100" alt="JunyTony" class="logo">
<div class="player-name">JunyTony</div>
<div class="player-desc">The fearless superhero ready to take on any challenge!</div>
</div>
<div class="col-md-6">
<i class="fa fa-bolt vs-icon"></i>
</div>
<div class="col-md-6">
<img src="https://via.placeholder.com/100" alt="Pocoyo" class="logo">
<div class="player-name">Pocoyo</div>
<div class="player-desc">The mischievous little boy with a heart full of curiosity!</div>
</div>
</div>
<p>Choose your side and join the epic battle between JunyTony and Pocoyo!</p>
<a href="#" class="btn">Join the Battle</a>
</div>
</body>
</html>