Calculator Tools Calculator Tools
Create

Baby Shark Mommy Shark Daddy Shark

Jan 2, 2024

About this app

Join the Baby Shark family in this fun and interactive web app!

Baby Shark Mommy Shark Daddy Shark

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>Baby Shark Mommy Shark Daddy Shark</title>
<meta name="description" content="Join the Baby Shark family in this fun and interactive web app!">
<meta name="keywords" content="baby shark, mommy shark, daddy shark, web app">

<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=Fredoka+One&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() {
// Get the main container element
const mainContainer = document.getElementById('main-container');

// Create a heading for the app
const heading = document.createElement('h1');
heading.innerText = 'Baby Shark Mommy Shark Daddy Shark';
heading.style.fontFamily = 'Fredoka One, cursive';
heading.style.textAlign = 'center';
heading.style.marginTop = '50px';
heading.style.marginBottom = '30px';
mainContainer.appendChild(heading);

// Create a container for the shark images
const sharkContainer = document.createElement('div');
sharkContainer.style.display = 'flex';
sharkContainer.style.justifyContent = 'center';
mainContainer.appendChild(sharkContainer);

// Create the baby shark image
const babySharkImage = document.createElement('img');
babySharkImage.src = 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/285/baby-shark_1f988.png';
babySharkImage.style.width = '200px';
babySharkImage.style.marginRight = '20px';
sharkContainer.appendChild(babySharkImage);

// Create the mommy shark image
const mommySharkImage = document.createElement('img');
mommySharkImage.src = 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/285/shark_1f988.png';
mommySharkImage.style.width = '200px';
mommySharkImage.style.marginRight = '20px';
sharkContainer.appendChild(mommySharkImage);

// Create the daddy shark image
const daddySharkImage = document.createElement('img');
daddySharkImage.src = 'https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/240/apple/285/shark_1f988.png';
daddySharkImage.style.width = '200px';
sharkContainer.appendChild(daddySharkImage);
});

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

<style>
/* App CSS Goes Here */
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
</div>
</body>
</html>