Skip to content

Instantly share code, notes, and snippets.

@h4
Created April 2, 2012 20:06
Show Gist options
  • Save h4/2286868 to your computer and use it in GitHub Desktop.
Save h4/2286868 to your computer and use it in GitHub Desktop.
Объект document
for (i=1; i<=6; i++) {
document.write('<h'+i+'>Заголовок '+i.toString().italics()+' уровня</h'+i+'>');
}
function createNewDoc() {
var newDoc=document.open("text/html", "replace"),
txt = "<html><body>Отлично!</body></html>";
newDoc.write(txt);
newDoc.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment