html hidden element code example
Example 1: css hiddden
.classname {
visibility: hidden;
}
Example 2: hide in css
display:none;
Example 3: html hidden
<!-- stops an element from rendering, but still loads it to memory-->
<p>this will show</p>
<p hidden>Thill will not show</p>