Make header and footer files to be included in multiple html pages

前端 未结 11 1917
無奈伤痛
無奈伤痛 2020-11-22 06:49

I want to create common header and footer pages that are included on several html pages.

I\'d like to use javascript. Is there a way to do this using only html and

11条回答
  •  醉话见心
    2020-11-22 07:38

    It is also possible to load scripts and links into the header. I'll be adding it one of the examples above...

    
    document.write('');
    document.write('');
    document.write('');
    
    document.getElementById("myHead").innerHTML =
    "Title"
    + "Subtitle";
    document.getElementById("myNav").innerHTML =
    "";
    document.getElementById("myFooter").innerHTML =
    ""
    + "

    Layout by You

    " + "

    Contact Us / " + "Report a problem.

    ";
    Content

提交回复
热议问题