Created
June 17, 2018 10:38
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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