html hide element by default code example
Example 1: html hide a div by default
<div class="toshow" style="display:none"></div>
Example 2: hide element using css
#tinynav1
{
display:none
}
<div class="toshow" style="display:none"></div>
#tinynav1
{
display:none
}