javascript-tutorial / en.javascript.info

Modern JavaScript Tutorial
https://javascript.info
Other
23.13k stars 3.84k forks source link

HOW to create html tags using javascript #3637

Open YOGINIMAHIMA1 opened 6 months ago

YOGINIMAHIMA1 commented 6 months ago

const h2= document.createElement('h2'); h2.setAttribute('id', 'heading1'); h2.setAttribute('class', 'heading11'); document.body.appendChild(h2);