Programmer Quotes

Report a typo

There are four <p> elements containing quotes in the below HTML.

Using a single property, add a border that surrounds them all. The border should be 3px, dashed, and pink.

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Quote</title>
</head>
<body>
<div>
<p class="quote">Being a programmer is easy. It's like flying like a bird, but you don't have wings!</p>
<p class="quote">One bad programmer can easily create two jobs a year.</p>
<p class="quote">C programmers never die. They are just cast into void.</p>
<p class="quote">Any sufficiently advanced bug is indistinguishable from a feature.</p>
</div>
</body>
</html>

Completed 1 of 2
The border is applied with only one property.
The code is valid.
___

Create a free account to access the full topic