Calculator Tools Calculator Tools
Create

JunyTony Tribute

Sep 25, 2023

About this app

Pay tribute to JunyTony

JunyTony Tribute

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 Tribute</title>
<meta name="description" content="Pay tribute to JunyTony">
<meta name="keywords" content="JunyTony, tribute, BATV, Roger">

<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=Montserrat:wght@400;700&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() {
// Display tribute message
const tributeMessage = document.createElement('h1');
tributeMessage.textContent = 'RIP JunyTony 😢';
tributeMessage.style.textAlign = 'center';
tributeMessage.style.color = '#ff0000';
tributeMessage.style.fontFamily = 'Montserrat, sans-serif';
tributeMessage.style.fontSize = '36px';
tributeMessage.style.marginTop = '50px';
document.getElementById('main-container').appendChild(tributeMessage);
});

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

<style>
/* App CSS Goes Here */
body {
background-color: #f9f9f9;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<!-- App HTML Goes Here -->
</div>
</body>
</html>