I am facing a challenge in making the second paragraph visible in this sample code. So far, my attempts have been on Firefox.
<!DOCTYPE html>
<html>
<head>
<style>
body {
display: none;
}
.show {
display: initial;
}
</style>
</head>
<body>
<p>First Paragraph</p>
<div class="show">
<p>Second Paragraph</p>
</div>
</body>
</html>