Calculator Tools Calculator Tools
Create

Krosh and Yozhik's Dialogue

Aug 12, 2026

About this app

A dialogue between Krosh and Yozhik about Krosh's new friend

Krosh and Yozhik's Dialogue

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>Krosh and Yozhik's Dialogue</title>
<meta name="description" content="A dialogue between Krosh and Yozhik about Krosh's new friend">
<meta name="keywords" content="dialogue, Krosh, Yozhik, friend">

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

<!-- Built-In Functions for Apps -->
<script type="text/javascript">
var localStoragePrefix = "ct-169115807750950";
var lastSave = 0;
// save to localstorage
function saveLocal(data) {
if (Date.now() - lastSave < 1000) {
return;
}
// save to cookie
let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict";
cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString();
document.cookie = cookie;
lastSave = Date.now();
}

// load from localstorage
function loadLocal() {
var cookiePrefix = localStoragePrefix + "=";
var cookieStart = document.cookie.indexOf(cookiePrefix);
if (cookieStart > -1) {
let cookieEnd = document.cookie.indexOf(";", cookieStart);
if (cookieEnd == -1) {
cookieEnd = document.cookie.length;
}
var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd);
return JSON.parse(cookieData);
}
}
</script>

<script type="text/javascript">
// App Javascript Goes Here
function displayDialogue() {
var dialogueContainer = document.getElementById("dialogue-container");
dialogueContainer.innerHTML = `
<div class="card">
<div class="card-body">
<h5 class="card-title">Krosh and Yozhik's Dialogue</h5>
<p class="card-text">
Krosh: Hey Yozhik, guess what? I made a new friend!
</p>
<p class="card-text">
Yozhik: Really? Tell me more about your new friend, Krosh.
</p>
<p class="card-text">
Krosh: Well, my new friend's name is <span style="color: blue;">[Friend's Name]</span>. We met in the forest and started talking. Turns out, we have so much in common!
</p>
<p class="card-text">
Yozhik: That's great, Krosh! What are some things you both have in common?
</p>
<p class="card-text">
Krosh: We both love exploring and discovering new things. We also enjoy playing games and solving puzzles together. It's so much fun!
</p>
<p class="card-text">
Yozhik: It sounds like you found a wonderful friend, Krosh. I'm happy for you!
</p>
<p class="card-text">
Krosh: Thank you, Yozhik. I'm really excited about our friendship. We're planning to have a picnic next week. Would you like to join us?
</p>
<p class="card-text">
Yozhik: Of course, Krosh! I would love to join your picnic. It'll be a great time together.
</p>
<p class="card-text">
Krosh: Awesome! I can't wait for the picnic. It's going to be so much fun!
</p>
</div>
</div>
`;
}

$(document).ready(function() {
displayDialogue();
});
</script>

<style>
/* App CSS Goes Here */
body {
background-color: #f5f5f5;
font-family: 'Roboto', sans-serif;
}

.card {
margin-top: 50px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.card-title {
color: #333;
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
}

.card-text {
color: #555;
font-size: 18px;
line-height: 1.5;
margin-bottom: 15px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div id="dialogue-container"></div>
</div>
</body>
</html>