This is the error I'm getting:
Line 41, Column 26: character "<" is the first character of a delimiter but occurred as data <br> Passing cars, < /br>
✉
This message may appear in several cases:
•You tried to include the "<" character in your page: you should escape it as "<"
•You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe.
•Another possibility is that you forgot to close quotes in a previous tag.
and this is the code I'm using:
<p>
I saw some Burma Shave style signs on the side of the
road today:
</p>
<blockquote>
<p>
<br> Passing cars, < /br>
<br> When you can't see, < /br>
<br> May get you, < /br>
<br> A glimpse, < /br>
<br> Of eternity. < /br>
</p>
</blockquote>
<p>
I definitely won't be passing any cars.
</p>
I have a feeling it's something obvious that I'm missing (hopefully.) Any help would be appreciated. Thanks!


















