Hiding elements is simple, say we have 2 <p>

<body>
  <p class="first">First</p>
  <p>Second</p>
</body>

Ex:

.first {
  /* not to display the text */
  display: none;
  /* hide the text, but save the space */
  visibility: hidden;
}