How to make same layout for all web pages

后端 未结 5 1256
野趣味
野趣味 2021-01-02 13:22

I am currently working on HTML I want to ask a question about website development.I am developing a website in which the basic layout remains same like menu, side menu etc b

5条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-02 14:00

    Yes, your best bet is a server side language, as Adam said. Absolutely avoid using the old style html frames: they're deprecated, and cause a certain number of problems, both on the programming side and on google optimization.

    By using a server side language, you'll still have entire pages, but they will be partially generated by php (or asp) by printing more files into one. For example:

    http://www.php.net/manual/en/function.include.php

    Bye!

提交回复
热议问题