Juny And Tony
About this app
Create your own Juny And Tony characters with this fun web app.
Juny And Tony Juny And Tony Generator Juny Tony Generate
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>Juny And Tony</title>
<meta name="description" content="Create your own Juny And Tony characters with this fun web app.">
<meta name="keywords" content="Juny And Tony, characters, web app, fun, interactive">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.2/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() {
// Create a function to generate the Juny And Tony characters
function generateCharacters() {
// Get the input values from the user
var junyName = document.getElementById("junyName").value;
var tonyName = document.getElementById("tonyName").value;
// Generate the Juny character HTML
var junyHTML = '<div class="character">';
junyHTML += '<h2>' + junyName + '</h2>';
junyHTML += '<img src="https://example.com/juny.png" alt="Juny">';
junyHTML += '</div>';
// Generate the Tony character HTML
var tonyHTML = '<div class="character">';
tonyHTML += '<h2>' + tonyName + '</h2>';
tonyHTML += '<img src="https://example.com/tony.png" alt="Tony">';
tonyHTML += '</div>';
// Display the characters in the app
document.getElementById("junyCharacter").innerHTML = junyHTML;
document.getElementById("tonyCharacter").innerHTML = tonyHTML;
}
// Add an event listener to the generate button
document.getElementById("generateButton").addEventListener("click", generateCharacters);
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
/* App CSS Goes Here */
.character {
text-align: center;
margin-bottom: 20px;
}
.character img {
width: 200px;
height: auto;
border-radius: 50%;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Juny And Tony Generator</h1>
<div class="row">
<div class="col">
<h2>Juny</h2>
<input type="text" id="junyName" class="form-control" placeholder="Enter Juny's name">
</div>
<div class="col">
<h2>Tony</h2>
<input type="text" id="tonyName" class="form-control" placeholder="Enter Tony's name">
</div>
</div>
<button id="generateButton" class="btn btn-primary">Generate</button>
<div class="row">
<div class="col">
<div id="junyCharacter"></div>
</div>
<div class="col">
<div id="tonyCharacter"></div>
</div>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!