This commit is contained in:
Philippe Torrel
2026-07-14 14:36:35 +02:00
parent 960451ae4a
commit 3631edde78
39 changed files with 2399 additions and 11 deletions

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
@@ -96,8 +96,17 @@
(() => {
// Tippen Sie eine Abfrage in die Konsole, die:
// 1. das h1-Element findet.
const h1El = document.querySelector('h1');
// 2.das Element mit der id buy_form findet.
const buyForm = document.querySelector('#buy_form');
// 3. das Element mit der id product_img findet.
const productImg = document.querySelector('#product_img');
console.log(h1El);
console.log(buyForm);
console.log(productImg);
})();
</script>
</body>