Elements on a webpage can have borders around them.

To see how it looks, add the border property.

<html>
<head>
<style>
.coupon {
border: solid;}
</style>
</head>
<body>

<h2>Rainforest Online Shop</h2>

<p class="coupon">50% Discount Code: LST3815162342*</p>

<p>*This offer is subject to change without any prior notice.</p>

</body>
</html>]]>

Make sure to type border.