2025-01-30 03:42:42 +00:00
|
|
|
const chocolateContainer = document.querySelector(".cupcakes");
|
2025-01-30 03:37:53 +00:00
|
|
|
const notesForEmma = {
|
2025-01-30 03:42:42 +00:00
|
|
|
noteOne: "",
|
|
|
|
noteTwo: "",
|
|
|
|
noteThree: "",
|
|
|
|
noteFour: "",
|
|
|
|
noteFive: "",
|
|
|
|
noteSix: "",
|
|
|
|
noteSeven: "",
|
|
|
|
noteEight: "",
|
|
|
|
noteNine: "",
|
|
|
|
noteTen: "",
|
|
|
|
noteEleven: "",
|
|
|
|
noteTwelve: "",
|
2025-01-30 03:37:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (let i = 0; i < 3; i++) {
|
|
|
|
for (let j = 0; j < 4; j++) {
|
|
|
|
const tile = document.createElement("div");
|
2025-01-30 03:42:42 +00:00
|
|
|
tile.classList.add("cupcake");
|
2025-01-30 03:37:53 +00:00
|
|
|
tile.style.height = "14vh";
|
|
|
|
tile.style.width = "7vw";
|
|
|
|
chocolateContainer.appendChild(tile);
|
|
|
|
}
|
|
|
|
}
|