I think the main problem is that I am having problems importing bootstrap along with all the required elements in my code. I am working on Codepen btw.
As mentioned in the tutorial, I have the following code entered on top of my html.
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootst href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
rapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link http://getbootstrap.com/css/#images>
The following is what I have coded for my row. Right now it is at a testing phase with text labelled button in each column. But I would eventually like to have pictures in the columns. It is currently labelling text from each column one on top of the other.
<div class="container-fluid">
<div class="row" id="Run-Column">
<div class="col-md-6">
<p> button </p>
</div>
<div class="col-md-6"id="Run-Column">
<p> button </p>
</div>
</div>
</div>
All the help is greatly appreciated
Thanks