I've hidden other p tags and divs using display:none,
How can I make them visible after inputting my name?
I'd like to type in my name and reveal all the content within the previously hidden div
<form method="post">
<p>
<input type="text" name="myname" />
</p><label>
<input type="submit" name="submit" value="Enter your names" />
</label>
</form>
<div style="display:none;">
<p>Enter your age to access this site</p>
<p>Mr. MyName</p>
<div>
Waiting for your age to enter the site </div>
<input type="text" name="age" />
</div>