Skip to content

Commit 3bd0a44

Browse files
Fixed typos, added some online resources.
1 parent 010913f commit 3bd0a44

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

exercises/3_CSS/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h1>CSS with Ladies Learning Code</h1>
88
<img src="images/llc.png" width="650" height="300" alt="LLC Logo" />
99

1010
<h2>About me</h2>
11-
<img src="images/christina_avatar.jpg" width="72" height="72" alt="Pearl Chen's Twitter avatar" />
11+
<img src="images/christina_avatar.jpg" width="72" height="72" alt="Christina Truong's Twitter avatar" />
1212
<p>My name is Christina Truong. I like 90s music and cupcakes.</p>
1313
<p>My website is <a href="http://christinatruong.com">christinatruong.com</a>.</p>
1414
</body>

index.html

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,8 +1596,8 @@ <h2>Generic Container Tags</h2>
15961596
<li><code>div</code> - An <span class="keyword">block</span> container.<br />
15971597
Much like a paragraph, it creates a line break above and below to create a box.</li>
15981598
</ul>
1599-
<pre class="prettyprint">&lt;span&gt;I'm a span!&lt;/div&gt;
1600-
&lt;div&gt;I'm another span!&lt;/div&gt;
1599+
<pre class="prettyprint">&lt;span&gt;I'm a span!&lt;/span&gt;
1600+
&lt;span&gt;I'm another span!&lt;/span&gt;
16011601
</pre>
16021602
<span>I'm a span!</span>
16031603
<span>I'm another span!</span>
@@ -1641,8 +1641,8 @@ <h2>Semantic HTML Tags</h2>
16411641
<pre class="prettyprint">&lt;header&gt;
16421642
&lt;nav&gt;
16431643
&lt;a&gt;Home&lt;/a&gt;
1644-
&lt;a"&gt;About&lt;/a&gt;
1645-
&lt;a"&gt;Contact&lt;/a&gt;
1644+
&lt;a&gt;About&lt;/a&gt;
1645+
&lt;a&gt;Contact&lt;/a&gt;
16461646
&lt;/nav&gt;
16471647
&lt;/header&gt;
16481648
&lt;section&gt;
@@ -1750,7 +1750,7 @@ <h2>Getting columns to be side-by-side</h2>
17501750
<p>To get our two columns to be side-by-side, use the <code>float</code> property. Values can be <code>left</code>, <code>right</code>, or <code>none</code>.</p>
17511751
<pre class="prettyprint">
17521752
section {
1753-
width: 560px;
1753+
width: 640px;
17541754
padding: 30px;
17551755
border: 1px solid gray;
17561756
<strong>float: left;</strong>
@@ -1984,15 +1984,18 @@ <h1>Additional Resources</h1>
19841984

19851985
<!-- SLIDE 103: FTP -->
19861986
<article class='slide slide-list'>
1987-
<h2>Books</h2>
1987+
<h3>Books</h3>
19881988
<p><a href="http://htmlandcssbook.com/">HTML and CSS: Design and Build Websites</a> by Jon Duckett</p>
19891989
<br />
1990-
<h2>Validating your HTML</h2>
1990+
<h3>Validating your HTML</h3>
19911991
<div>
1992-
<p>One of the best ways to make sure that your HTML &amp; CSS is being done correctly is to run it through a validator.</p>
1992+
<p>One of the best ways to make sure that your HTML &amp; CSS is correct is to run it through a validator.</p>
19931993
<p><a href="http://validator.w3.org/">HTML validator</a><br />
19941994
<a href="http://jigsaw.w3.org/css-validator/">CSS validator</a></p>
19951995
</div>
1996+
<h3>Online resources</h3>
1997+
<p><a href="http://learn.shayhowe.com/html-css/">A Beginners Guide to HTML & CSS</a><br>
1998+
<a href="http://dochub.io/#css/">Documentation for HTML, CSS and more</a></p>
19961999
</article>
19972000

19982001
<!-- SLIDE 104: TIPS -->

0 commit comments

Comments
 (0)