Skip to content

Commit

Permalink
Use 1 div per class for marketing section
Browse files Browse the repository at this point in the history
In order to solve point codeschool-projects#10 it would appear that
one cannot use multiple classes on a div.

    --- Lionel Saliou, Ph.D
  • Loading branch information
Krz-Aramis committed Feb 18, 2018
1 parent 2dd1bf0 commit 1c1886a
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,28 +77,31 @@ <h1>Get in touch</h1>
</a>
</div>

<div class="row marketing">
<div class="marketing">
<div class="container">
<div class="col-md-4">
<i class='glyphicon glyphicon-qrcode'></i>
<h2>I wish I knew HTML and CSS</h2>
<p>These technologies have changed tremendously since I last used them.</p>
</div>
<div class="row">

<div class="col-md-4">
<i class='glyphicon glyphicon-qrcode'></i>
<h2>I wish I knew HTML and CSS</h2>
<p>These technologies have changed tremendously since I last used them.</p>
</div>

<div class="col-md-4">
<i class='glyphicon glyphicon-flash'></i>
<h2>Javascript</h2>
<p>I agree to learn the basics, however the future of this technology appears to be TypeScript in my opinion. </p>
<p>Clear and evident strong typing keeps your average developer saner! </p>
</div>
<div class="col-md-4">
<i class='glyphicon glyphicon-flash'></i>
<h2>Javascript</h2>
<p>I agree to learn the basics, however the future of this technology appears to be TypeScript in my opinion. </p>
<p>Clear and evident strong typing keeps your average developer saner! </p>
</div>

<div class="col-md-4">
<i class='glyphicon glyphicon-hdd'></i>
<h2>RESTful API</h2>
<p>The final true implementation of a Service Oriented Architecture?</p>
</div>
<div class="col-md-4">
<i class='glyphicon glyphicon-hdd'></i>
<h2>RESTful API</h2>
<p>The final true implementation of a Service Oriented Architecture?</p>
</div>
</div> <!-- row -->
</div>
</div> <!-- row -->
</div>

</div>
</section>
Expand Down

0 comments on commit 1c1886a

Please sign in to comment.