Can you link to an HTML file?

前端 未结 4 1005
青春惊慌失措
青春惊慌失措 2020-12-11 07:44

My website has the same navigation menu throughout, instead to rewriting the HTML code for every page, can I link to a second HTML file (that contains the nav HTML code) lik

4条回答
  •  庸人自扰
    2020-12-11 08:44

    That is called HTML includes, and YES, it is possible

    My HTML include will go here.

    NOTES

    HTML doesn't have a simple include mechanism (except for frames like iframe, which have side effects).

    A better solution would be to use Server-Side includes, which is the preferred way of adding common parts to your document, on the server, of course.

提交回复
热议问题