📜  如何使用框架将 HTML 页面分成四个部分?

📅  最后修改于: 2021-11-03 04:18:06             🧑  作者: Mango

在本文中,我们将学习如何使用 HTML 框架将页面分成四个部分。这可用于表示页眉、侧边栏、页脚和主要内容。框架 使用 标签创建。我们将不得不为每个部分使用四个 HTML 文件。

句法:


    // frame elements

下面的示例将演示创建页面四个部分的方法。

index.html


  
    
      
        
    
    
      
      


header.html


  

    GeeksforGeeks   


home.html


  

    Welcome to the home page   


sidebar.html


footer.html


  

    All Rights Reserved   


html_content.html


  

    Hyper Text Markup Language   

  


css_content.html


  

    Cascading Style Sheets   

  


js_content.html


  

    JavaScript   

  


php_content.html


  

      Hypertext Preprocessor   

  


输出:页面现在将像这样划分。

我们现在将分别创建四个部分的 HTML 页面和主页的内容。

标题.html



  

    GeeksforGeeks   

主页.html



  

    Welcome to the home page   

侧边栏.html

页脚.html



  

    All Rights Reserved   

html_content.html



  

    Hyper Text Markup Language   

  

css_content.html



  

    Cascading Style Sheets   

  

js_content.html



  

    JavaScript   

  

php_content.html



  

      Hypertext Preprocessor   

  

输出: