<div id=...>

Los bloques div con id de la envoltura son reemplazados por los bloques div del contenido con el mismo id.

Contenido Envoltura Resultado
<div id=titulo>
  <h1>htmlcoco</h1>
</div>
<div id=main>
  Prueba
</div>
<html>
<head>
</head>
<body>
  <div id=titulo>
  </div>
  <div id=main>
  </div>
</body>
</html>
<html>
<head>
</head>
<body>
<div id=titulo>
  <h1>htmlcoco</h1>
</div>
  <div id=main>
    Prueba
  </div>
</body>
</html>