<x:stylesheet xmlns="http://www.w3.org/1999/xhtml" xmlns:x="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <x:output method="xml"/>
  <x:template match="/">
    <html>
      <head>
        <title>
          <x:apply-templates select="//*[local-name() = 'title']"/>
        </title>
      </head>
      <body>
        <p>The XSLT was applied.</p>
      </body>
    </html>
  </x:template>
  <x:template match="*[local-name() = 'title']">
    <x:apply-templates/>
  </x:template>
</x:stylesheet>
