Calculator Tools Calculator Tools

Untitled

Dec 24, 2023

About this app

An app that combines various features like a superhero quiz, photo editor, meditation, news reader, art gallery, and fashion trends.

Untitled Superhero Quiz Find out which superhero you are. Try Now Photo Editor Amazing filters and editing tools for stunning photos. Try Now Meditation Unwind and find inner peace. Try Now News Reader Stay updated with the latest news from around the world. Try Now Art Gallery Beautiful paintings from renowned artists. Try Now Fashion Trends Latest fashion tips and trends. Try Now

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>Untitled</title>
<meta name="description" content="An app that combines various features like a superhero quiz, photo editor, meditation, news reader, art gallery, and fashion trends.">
<meta name="keywords" content="superhero quiz, photo editor, meditation, news reader, art gallery, fashion trends">

<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: #f2f2f2;
font-family: 'Roboto', sans-serif;
}

.app-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}

.app-card {
width: 300px;
height: 400px;
background-color: #fff;
border-radius: 10px;
margin: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
overflow: hidden;
transition: transform 0.3s ease-in-out;
}

.app-card:hover {
transform: scale(1.05);
}

.app-card-header {
height: 100px;
background-color: #ff5a5f;
display: flex;
justify-content: center;
align-items: center;
}

.app-card-header i {
font-size: 40px;
color: #fff;
}

.app-card-body {
padding: 20px;
}

.app-card-title {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}

.app-card-description {
font-size: 14px;
color: #888;
margin-bottom: 20px;
}

.app-card-button {
background-color: #ff5a5f;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}

.app-card-button:hover {
background-color: #ff3b40;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="app-container">
<div class="app-card">
<div class="app-card-header">
<i class="fa fa-superpowers"></i>
</div>
<div class="app-card-body">
<h3 class="app-card-title">Superhero Quiz</h3>
<p class="app-card-description">Find out which superhero you are.</p>
<button class="app-card-button">Try Now</button>
</div>
</div>

<div class="app-card">
<div class="app-card-header">
<i class="fa fa-picture-o"></i>
</div>
<div class="app-card-body">
<h3 class="app-card-title">Photo Editor</h3>
<p class="app-card-description">Amazing filters and editing tools for stunning photos.</p>
<button class="app-card-button">Try Now</button>
</div>
</div>

<div class="app-card">
<div class="app-card-header">
<i class="fa fa-music"></i>
</div>
<div class="app-card-body">
<h3 class="app-card-title">Meditation</h3>
<p class="app-card-description">Unwind and find inner peace.</p>
<button class="app-card-button">Try Now</button>
</div>
</div>

<div class="app-card">
<div class="app-card-header">
<i class="fa fa-newspaper-o"></i>
</div>
<div class="app-card-body">
<h3 class="app-card-title">News Reader</h3>
<p class="app-card-description">Stay updated with the latest news from around the world.</p>
<button class="app-card-button">Try Now</button>
</div>
</div>

<div class="app-card">
<div class="app-card-header">
<i class="fa fa-paint-brush"></i>
</div>
<div class="app-card-body">
<h3 class="app-card-title">Art Gallery</h3>
<p class="app-card-description">Beautiful paintings from renowned artists.</p>
<button class="app-card-button">Try Now</button>
</div>
</div>

<div class="app-card">
<div class="app-card-header">
<i class="fa fa-suitcase"></i>
</div>
<div class="app-card-body">
<h3 class="app-card-title">Fashion Trends</h3>
<p class="app-card-description">Latest fashion tips and trends.</p>
<button class="app-card-button">Try Now</button>
</div>
</div>
</div>
</div>
</body>
</html>