Lava Example - 61 | Rock Community

Lava Example - 47


Prompt

Content in Rock's internal themes look so much better when they're not added right to the background.

Here's some content that has been added right into a block's template.

Add some HTML so it's in a panel instead!

Initial Code
<h2>Hello World!</h2>
<p>We're learning so much this week!</p>
Solution Lava
<div class="panel panel-default">
    <div class="panel-heading">
        <h2 class="panel-title">Hello World!</h2>
    </div>
    <div class="panel-body">
        <p>We're learning so much this week!</p>
    </div>
</div>