I am a beginner in HTML and CSS learning world, and thus need your help.
I am trying to build a simple blog HTML. I am trying to build this for higher resolution i.e. 1600 X 900; Height is immaterial.
Out of 1600 PX width 100+100 will be utilized in the margin/padding in left and right hand-side.
There is a header and footer, and the middle section of this blog kind of HTML is divided like this →
small sidebar(15%of the remaining 1400px) - content area(52% of the 1400px) - bigger aside/sidebar(33%).
Can you guide me how the classes should be assigned so that I should get this arrangement also if needed →
Welcome to SitePoint, @Novicedeveloper. Have you learned anything at all about HTML and CSS, or are you starting right from the very beginning?
If you have already written your basic HTML for this page, could you please post it here? Just copy the code and paste it in the edit box. Then highlight all your code and click on the </> icon you see above.
Your HTML structure is a little odd, and your use of the <article> tag around the <h1> heading is incorrect.
The HTML element represents a self-contained composition in a document, page, application, or site, which is intended to be independently distributable or reusable (e.g., in syndication). Examples include: a forum post, a magazine or newspaper article, or a blog entry.
Likewise, I would say that the outer container should be <main>, with a <section> nested within it, if required.