Creating two columns layout - html/css semantics
I want to create a very simple liquid layout with 2 columns - the one to the left will have a fixed width, and the one to the right will be dependent to the window size. The layout will contain 4 elements - the header, navigation, content, and the footer. I have a couple of questions according to the semantics of HTML5 elements here. This is the code: <body> <div id="container"> <header> <div id="header"> sadfsdf </div> </header> <nav> <div id="nav"> gdfsgf </div> </nav> <article> <div id="article"> gdffgdg </div> </article> <footer> <div id="footer"> gdfsgf </div> </footer> </div> </body> 1)