Multiple <head> and <body> tag

前端 未结 3 1615
甜味超标
甜味超标 2021-01-20 19:57

I am trying to create a very simple web application, basically to understand the best practices of coding in HTML5, CSS and JavaScript.

My application has 3-4 pages

3条回答
  •  野的像风
    2021-01-20 20:28

    In my opinion it would be a good idea to read about templating systems or have a look how frameworks/CMS handle this.

    Doing it your way, you can't completly avoid repeating e.g. the closing head tag in every content.php.

    So this is just an idea:

    head.php

    
    
    
        
    
            
            
            
            
    

    content.php

    
    
        
        
        
    
    
        

    title

    Your content

    foot.php

             
        

提交回复
热议问题