IHTX Maker - Create Delicious Chocolate Treats
About this app
IHTX Maker allows you to easily design and customize your own chocolate treats! Experiment with flavors, shapes, and decorations to create unique designs.
IHTX Maker - Create Delicious Chocolate Treats IHTX Maker Create Your Chocolate Treat Choose a flavor: Milk Chocolate Dark Chocolate White Chocolate Choose a shape: Heart Square Circle Add a decoration: Create My Chocolate!
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>IHTX Maker - Create Delicious Chocolate Treats</title>
<meta name="description" content="IHTX Maker allows you to easily design and customize your own chocolate treats! Experiment with flavors, shapes, and decorations to create unique designs.">
<meta name="keywords" content="IHTX, chocolate, maker, creator, treats, sweets, customize, design, delicious">
<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const flavorSelect = document.getElementById('flavor-select');
const shapeSelect = document.getElementById('shape-select');
const decorationInput = document.getElementById('decoration-input');
const output = document.getElementById('output');
document.getElementById('create-btn').addEventListener('click', function() {
const flavor = flavorSelect.value;
const shape = shapeSelect.value;
const decoration = decorationInput.value;
output.innerHTML = `<h3>Your IHTX Chocolate Creation</h3>
<p>Flavor: ${flavor}</p>
<p>Shape: ${shape}</p>
<p>Decoration: ${decoration}</p>`;
output.style.display = 'block';
output.classList.add('animate__animated', 'animate__fadeIn');
});
});
} catch (error) {
throw error;
}
</script>
<style>
body {
background: linear-gradient(135deg, #f5e03b, #eabb77);
color: #4a4a4a;
}
#main-container {
margin-top: 50px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
background: white;
}
h1 {
font-family: 'Comic Sans MS', cursive;
color: #da6514;
text-align: center;
}
select, input {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 2px solid #da6514;
border-radius: 5px;
}
button {
background-color: #da6514;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #b85b12;
}
#output {
display: none;
border: 1px solid #da6514;
padding: 15px;
margin-top: 20px;
background: #f9f3d4;
border-radius: 5px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>IHTX Maker</h1>
<h4>Create Your Chocolate Treat</h4>
<div>
<label for="flavor-select">Choose a flavor:</label>
<select id="flavor-select">
<option value="Milk Chocolate">Milk Chocolate</option>
<option value="Dark Chocolate">Dark Chocolate</option>
<option value="White Chocolate">White Chocolate</option>
</select>
<label for="shape-select">Choose a shape:</label>
<select id="shape-select">
<option value="Heart">Heart</option>
<option value="Square">Square</option>
<option value="Circle">Circle</option>
</select>
<label for="decoration-input">Add a decoration:</label>
<input id="decoration-input" type="text" placeholder="e.g., Sprinkles, Nuts...">
<button id="create-btn">Create My Chocolate!</button>
</div>
<div id="output"></div>
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
</body>
</html>
NEW APPS
These are apps made by the community!