What does this code display?

A group of p elements with a border around themDifferent p elements, each one with its own borderA group of p elements with a border around some of themA group of elements with no border

A group of p elements with a border around them.

<html>
<head>
<style> div {border: solid 2px tomato; padding: 15px;} </style>
</head>
<body>
  <div>
   <p> Surfing </p>
   <p> Snowboarding </p>
   <p> Skating </p>
  </div>
</body>
</html>]]>