Answers for "how to link to another html file in html"

0

include another html file in a html file

<html> 
  <head> 
    <script src="jquery.js"></script> 
    <script> 
    $(function(){
      $("#includeContent").load("fileName.html"); 
    });
    </script> 
  </head> 

  <body> 
     <div id="includeContent"></div>
  </body> 
</html>
Posted by: Guest on February-24-2021
2

htlm link

<a href="https://www.google.com/">Visit googel.com!</a>
Posted by: Guest on October-17-2020

Code answers related to "how to link to another html file in html"

Browse Popular Code Answers by Language