Calculator Tools Calculator Tools
Create

TiqueToque - Your Personal Cooking Assistant

Sep 18, 2023

About this app

TiqueToque is a fun and interactive cooking app that helps you discover new recipes, plan your meals, and create shopping lists.

TiqueToque - Your Personal Cooking Assistant TiqueToque Your Personal Cooking Assistant Delicious Pasta Carbonara A classic Italian pasta dish made with eggs, cheese, pancetta, and black pepper. View Recipe Mouthwatering Chocolate Cake A rich and decadent chocolate cake that will satisfy your sweet tooth. View Recipe Shopping List 1 lb pasta 4 eggs 1 cup grated cheese 1/2 lb pancetta Black pepper

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>TiqueToque - Your Personal Cooking Assistant</title>
<meta name="description" content="TiqueToque is a fun and interactive cooking app that helps you discover new recipes, plan your meals, and create shopping lists.">
<meta name="keywords" content="cooking app, recipe app, meal planning, shopping list">

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

<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f7f7f7;
}

.header {
background-color: #ff6f00;
padding: 20px;
color: white;
text-align: center;
}

.title {
font-size: 30px;
margin-bottom: 10px;
}

.subtitle {
font-size: 20px;
}

.recipe-card {
background-color: white;
border-radius: 10px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.recipe-card .image {
text-align: center;
margin-bottom: 20px;
}

.recipe-card .image img {
max-width: 100%;
height: auto;
border-radius: 10px;
}

.recipe-card .title {
font-size: 24px;
margin-bottom: 10px;
}

.recipe-card .description {
font-size: 16px;
color: #777;
margin-bottom: 10px;
}

.recipe-card .button {
background-color: #ff6f00;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}

.recipe-card .button:hover {
background-color: #e65100;
}

.recipe-card .button i {
margin-right: 5px;
}

.shopping-list {
background-color: white;
border-radius: 10px;
padding: 20px;
margin-bottom: 30px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.shopping-list .title {
font-size: 24px;
margin-bottom: 10px;
}

.shopping-list .item {
font-size: 16px;
color: #777;
margin-bottom: 10px;
}

.shopping-list .item i {
margin-right: 5px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div class="header">
<h1 class="title">TiqueToque</h1>
<p class="subtitle">Your Personal Cooking Assistant</p>
</div>

<div class="recipe-card">
<div class="image">
<img src="https://example.com/recipe-image.jpg" alt="Recipe Image">
</div>
<h2 class="title">Delicious Pasta Carbonara</h2>
<p class="description">A classic Italian pasta dish made with eggs, cheese, pancetta, and black pepper.</p>
<button class="button">
<i class="fa fa-cutlery"></i>
View Recipe
</button>
</div>

<div class="recipe-card">
<div class="image">
<img src="https://example.com/recipe-image.jpg" alt="Recipe Image">
</div>
<h2 class="title">Mouthwatering Chocolate Cake</h2>
<p class="description">A rich and decadent chocolate cake that will satisfy your sweet tooth.</p>
<button class="button">
<i class="fa fa-cutlery"></i>
View Recipe
</button>
</div>

<div class="shopping-list">
<h2 class="title">Shopping List</h2>
<ul>
<li class="item">
<i class="fa fa-check"></i>
1 lb pasta
</li>
<li class="item">
<i class="fa fa-check"></i>
4 eggs
</li>
<li class="item">
<i class="fa fa-check"></i>
1 cup grated cheese
</li>
<li class="item">
<i class="fa fa-check"></i>
1/2 lb pancetta
</li>
<li class="item">
<i class="fa fa-check"></i>
Black pepper
</li>
</ul>
</div>
</div>

<script type="text/javascript">
try {
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Add click event listeners to recipe buttons
var recipeButtons = document.querySelectorAll(".recipe-card .button");
recipeButtons.forEach(function(button) {
button.addEventListener("click", function() {
// Replace with your logic to view the recipe
alert("View Recipe");
});
});
});

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