Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
</head>
<body>
<p id="example"></p>
<script>
document.getElementById("example").innerHTML = "Mon premier code JavaScript";
</script>
</body>
</html>