hide div in html code example
Example 1: hide element using css
#tinynav1
{
display:none
}
Example 2: how hide in html
#elementID{
display:none;
}
Example 3: how to hide div in html
document.getElementById('elementName').hide();
Example 4: hide a div
<div id="main">
<p> Hide/show this div </p>
</div>
('#main').hide(); //to hide
// 2nd way, by injecting css using jquery
$("#main").css("display", "none");