codice:
<html>
<head>
<title></title>

<script language="javascript">
<!--
function aggiungi() { //invece di "document.getElementsByTagName(tag)[indice]" puoi usare "document.getElementById(idAttribute)"
var dom=document.getElementsByTagName("body")[0];
var brekka=document.createElement("br");
var testo=document.createTextNode("Questo è il testo tag HTML...");
dom.appendChild(testo);
dom.appendChild(brekka);
};
//-->
</script>


</head>
<body>
<p align="center" id="paragrafo">Questa è la pagina....
cmq sia è bella...Aggiungi</p>
</body>
</html>
Cmq ti conviene studiare il dom, cosi ti è più chiaro il codice...