Afficher une page Web web dans une page web

<html> 
  <head> 
    <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
    <script> 
    $(function(){
      $("#inclusion").load("page-a-inclure.html"); 
    });
    </script> 
  </head> 

  <body> 
     <div id="inclusion"></div>
  </body> 
</html>
Testy Termite