// (gH) -_- tp3fin.js ; TimeStamp (unix) : 28 Mars 2010 vers 15:31
// ######################################################################
function creation() {
// ######################################################################
// partie du haut
elth1 = window.document.createElement("h1") ;
eltsp = window.document.createElement("span") ;
eltgr = window.document.createElement("b") ;
texte = window.document.createTextNode("Bonjour") ;
eltsp.setAttribute("class","gbleu") ;
eltsp.setAttribute("className","gbleu") ;
eltgr.appendChild(texte) ;
eltsp.appendChild(eltgr) ;
elth1.appendChild(eltsp) ;
window.document.body.appendChild(elth1) ;
} ; // fin de fonction creation
// ######################################################################
|