# File lib/Borges/Response/HtmlResponse.rb, line 33
  def print_html_on(str)
    str << '<html>'
    @head.print_html_on(str)
    @body.print_html_on(str)
    str << '</html>'
  end