Skip to content

Instantly share code, notes, and snippets.

@AndreaBarghigiani
Created June 17, 2018 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndreaBarghigiani/6d3bca08c10200b4948efdfcedde2dd9 to your computer and use it in GitHub Desktop.
Save AndreaBarghigiani/6d3bca08c10200b4948efdfcedde2dd9 to your computer and use it in GitHub Desktop.
In questo gist raccolgo i blocchi di codice usati per la definizione di DOM presente nel nostro Glossario: https://skillsandmore.org/glossario/dom/
<script>
var container = document.createElement('div');
container.innerHTML = '<h1>Ciao Mondo</h1>';
document.body.append( container );
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment