Create a hidden paragraph in HTML5


Use the hidden attribute in HTML5 to create a hidden paragraph in HTML5 i.e. an element no longer relevant.

Example

You can try to run the following code to implement hidden attribute in HTML5 −

<!DOCTYPE html>
<html>
   <body>
      <h2>Heading</h2>
      <p>This is a demo paragraph and visible.</p>
      <p hidden>This is a demo paragraph and hidden.</p>
   </body>
</html>

Updated on: 29-May-2020

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements