MonkCode
Exploring the digital world!
Bootstrap Grid
I rely on grid systems to keep content organized on the page: Bootstrap Grid Docs
Here is the same sample code:
<div class="container">
<div class="row">
<div class="col-sm">
One of three columns
</div>
<div class="col-sm">
One of three columns
</div>
<div class="col-sm">
One of three columns
</div>
</div>
</div>
One of three columns
One of three columns
One of three columns
Well that was easy, can I intermingle markdown? I got it to work, but found that markdown rendering does not like indentation.
<div class="container">
<div class="row">
<div class="col-sm">
[![](../images/github-round.png)](https://github.com/SamMonk)
</div>
<div class="col-sm">
[![](../images/twitter-round.png)](https://twitter.com/shawnmonk)
</div>
<div class="col-sm">
[![](../images/linkedin-round.png)](https://www.linkedin.com/in/shawn-sam-monk-125a1b70/)
</div>
</div>
</div>