<?php

$doc = new DOMDocument();

$root = $doc->createElement('html');
$doc->appendChild($root);

$head = $doc->createElement('head');
$root->appendChild($head);

var_dump($doc->nodeType);