A good HTML skeleton

前端 未结 6 1938
独厮守ぢ
独厮守ぢ 2021-01-31 08:15

I want to start creating websites again, but I\'ve been out of the HTML scene for a while now. I was just wondering if this is a good skeleton for a website. And if not, what sh

6条回答
  •  误落风尘
    2021-01-31 08:19

    The W3C DOM Level 1 Core is a good place to start:

    
    
    
      My Document
    
    
    
    
    

    The W3C DOM Level 1 allows you to change the content tree any way you want. It is powerful enough to build any HTML document from scratch.

    From there you can add any option (, , etc.), element (link,main, nav, div, footer, etc.) or library dependency (jQuery, Bootstrap, etc.), based on your needs and preferences.

提交回复
热议问题