What does this code display?
- A group of
p elements with a border around them - Different
p elements, each one with its own border - A group of
p elements with a border around some of them - A 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>]]>