1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<html> <head> <title> la déclaration de variables </title> </head> <body> <p id= "afficherIci" ></p> <script> var artiste = "coryArcangel" ; document.getElementById( "afficherIci" ).innerHTML = artiste; </script> </body> </html> |