Access the first paragraph by picking the corresponding ID value.

<html>
<body>
<h3 id="name">Soundify</h3>
<p id="about">
Music for everyone
</p>
<p id="anywhere">Listen from anywhere.</p>
<script>
document.getElementById("about");
</script>
</body>
</html>]]>

Make sure to pick "about".