Div, Header, Footer and Main
Different Divisions In HTML Div: The Division can be done by <div> tag. Right now the page may look similar with or without using the div tag, but when we start CSS it will mean a lot. The <div> tag has its closing tag as </div> The div tag is used to make division of a page. eg: <div> <p>Hi! this is division for example</p> </div> Header: The header division is to be done on head of the webpage. about, contact, main are the information are to be defined in a header tag. The header tag has its closing tag as </header> eg: <header> <p> Hi!, This is Header division</p> </header> Footer: Footer tag is same like header divisio...