Skip to content

Commit 1c1886a

Browse files
committed
Use 1 div per class for marketing section
In order to solve point codeschool-projects#10 it would appear that one cannot use multiple classes on a div. --- Lionel Saliou, Ph.D
1 parent 2dd1bf0 commit 1c1886a

File tree

1 file changed

+21
-18
lines changed

1 file changed

+21
-18
lines changed

index.html

Lines changed: 21 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -77,28 +77,31 @@ <h1>Get in touch</h1>
7777
</a>
7878
</div>
7979

80-
<div class="row marketing">
80+
<div class="marketing">
8181
<div class="container">
82-
<div class="col-md-4">
83-
<i class='glyphicon glyphicon-qrcode'></i>
84-
<h2>I wish I knew HTML and CSS</h2>
85-
<p>These technologies have changed tremendously since I last used them.</p>
86-
</div>
82+
<div class="row">
83+
84+
<div class="col-md-4">
85+
<i class='glyphicon glyphicon-qrcode'></i>
86+
<h2>I wish I knew HTML and CSS</h2>
87+
<p>These technologies have changed tremendously since I last used them.</p>
88+
</div>
8789

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

95-
<div class="col-md-4">
96-
<i class='glyphicon glyphicon-hdd'></i>
97-
<h2>RESTful API</h2>
98-
<p>The final true implementation of a Service Oriented Architecture?</p>
99-
</div>
97+
<div class="col-md-4">
98+
<i class='glyphicon glyphicon-hdd'></i>
99+
<h2>RESTful API</h2>
100+
<p>The final true implementation of a Service Oriented Architecture?</p>
101+
</div>
102+
</div> <!-- row -->
100103
</div>
101-
</div> <!-- row -->
104+
</div>
102105

103106
</div>
104107
</section>

0 commit comments

Comments
 (0)