Hello @freedm55, I’m glad you figured out how to post to our help section on the forum and get your code on here!
I’ve edited your post for readability. When you enter a code block into the forum, remember to precede it with a line of three backticks and follow it with a line of three backticks to make easier to read. See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>
) will also add backticks around text. If you just paste code without backticks, the forum will attempt to change the way the forum post looks.

Also, when looking at your code that you provided, it appears that you are missing the bottom row closing tag. Here is what you have:
<div class="row">
<div class="col-xs-4"><button class="btn btn-block btn-primary">Like</button></div>
<div class="col-xs-4"><button class="btn btn-block btn-info">Info</button></div>
<div class="col-xs-4"><button class="btn btn-block btn-Danger">Delete</button></div>
It should be like this:
<div class="row">
<div class="col-xs-4"><button class="btn btn-block btn-primary">Like</button></div>
<div class="col-xs-4"><button class="btn btn-block btn-info">Info</button></div>
<div class="col-xs-4"><button class="btn btn-block btn-Danger">Delete</button></div>
</div> <!-- the closing tag for .row -->
If you struggle with this, it is probably because you are not indenting your code.Here is an article that can clarify this, but you will want your code to look somewhat like this:
<div class="row">
<div class="col-xs-4">
<button class="btn btn-block btn-primary">Like</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-info">Info</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-Danger">Delete</button>
</div>
</div><!-- .row -->
Indenting and formatting code properly like this will help you spot issue like failing to nest these tags.