HTML: Shadow Box
Here is the code that makes this shadow box possible:
<div style="margin: 50px 15% 50px 15%; background-color: #cfcfcf;">
<div style="position: relative; top: -20px; left: -20px; padding: 20px; background: #ffffff; border: 2px solid #cfcfcf;">
<p>Your Text...</p>
</div>
</div>
Anatomy of a Code Snippet
Change colors to have some fun!
Use hex color codes to change the background and foreground colors in your shadow box:
<div style="margin: 50px 15% 50px 15%; background-color: #004a67;">
<div style="position: relative; top: -20px; left: -20px; padding: 20px; background: #c2dff0; border: 2px solid #004a67;">
<p>Your Text...</p>
</div>
</div>