SO - 22978913
by fizerkhan
HTML
<div id="about" style="display:none;">
<h2>About Us</h2>
<p>Objective: To teach and use skills in relation to creating games.</p>
<p>Where: CAT 145</p>
<p>When: Monday's at 6:30pm</p>
</div>
JavaScript
//jQuery
$(function () {
$('#about').fadeIn('slow'); //fades in the text
});