Right now I am planning on using this on every page, but it is not loading the nav and I'm not sure why.
<!-- This is in my main HTML that I want nav in-->
    <div id="nav-placeholder"></div>
    
    <script>
    $(function(){
      $("#nav-placeholder").load("NavBar.html");
    });
    </script>
<!-- this is the NavBar.html file-->
<header>
<div class="header-row">
            <div class="header-column d-lg-none">
                <div class="header-row">
                    <h1 class="font-weight-semibold text-7 mb-0">
                        <a href="index.html" class="
              text-decoration-none text-color-light
              custom-primary-font
            ">Dynamic</a>
                    </h1>
                </div>
            </div>
</div>
</header>
 
    