Waiting Answer March 23, 2024

How to Show Hidden HTML Elements using Javascript?

Here is my HTML code

    <p id="para" style="display:none;">This is a HTML code</p>
    <button type="button">Click Here to change the p tag Font Size</button>

I want to show the id para when clicking the button. How to do this using Javascript?

Answers
Your Answer