Calculator Tools Calculator Tools
Create

Juny Sozinha

Jan 3, 2024

About this app

Juny Sozinha is a fun and colorful app where you can have a great time playing games, exploring interesting articles, and chatting with friends.

Juny Sozinha Juny Sozinha Games Have fun playing exciting games and challenge your friends. Play Now Articles Explore interesting articles on various topics and stay informed. Read More Chat Connect with your friends and have fun chatting in real-time. Join Chat

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 Sozinha</title>
<meta name="description" content="Juny Sozinha is a fun and colorful app where you can have a great time playing games, exploring interesting articles, and chatting with friends.">
<meta name="keywords" content="Juny Sozinha, fun app, games, articles, chat">

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

<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() {

});

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

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

h1 {
text-align: center;
color: #333;
margin-top: 50px;
}

.game-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}

.game-card h3 {
margin-top: 0;
color: #333;
}

.game-card p {
color: #777;
}

.article-card {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}

.article-card h3 {
margin-top: 0;
color: #333;
}

.article-card p {
color: #777;
}

.chat-container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
}

.chat-container h3 {
margin-top: 0;
color: #333;
}

.chat-container p {
color: #777;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Juny Sozinha</h1>

<div class="game-card">
<h3>Games</h3>
<p>Have fun playing exciting games and challenge your friends.</p>
<a href="#" class="btn btn-primary">Play Now</a>
</div>

<div class="article-card">
<h3>Articles</h3>
<p>Explore interesting articles on various topics and stay informed.</p>
<a href="#" class="btn btn-primary">Read More</a>
</div>

<div class="chat-container">
<h3>Chat</h3>
<p>Connect with your friends and have fun chatting in real-time.</p>
<a href="#" class="btn btn-primary">Join Chat</a>
</div>
</div>
</body>
</html>