Added third element (div) with children (h1, p)

This commit is contained in:
NetMan 2024-01-06 22:25:46 +01:00
parent 43278d20b2
commit ae2b9e7946
1 changed files with 12 additions and 1 deletions

View File

@ -14,4 +14,15 @@ const h3 = document.createElement('h3');
h3.style.color = "#00f"; h3.style.color = "#00f";
h3.textContent = "I'm a blue h3!"; h3.textContent = "I'm a blue h3!";
container.append(p1, h3); const div = document.createElement('div');
div.style.cssText = "border: 2px solid #000; background: pink;";
const h1 = document.createElement('h1');
h1.textContent = "I'm in a div!";
const p2 = document.createElement('p');
p2.textContent = "ME TOO!";
div.append(h1, p2);
container.append(p1, h3, div);