Skip to content

Commit 6f19216

Browse files
authored
Merge pull request wesbos#5 from SergeyKhval/gh-pages
fix wesbos#4: correct some inconsistencies with closing tags
2 parents fb38202 + 59cf474 commit 6f19216

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lesson2-focus/02-dom-order/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,19 @@ <h2>Recommended</h2>
7272
<article>
7373
<img src="./images/dog.jpg" alt="A dog at a desk looks up at a laptop and mouse" />
7474
<div class="info">
75-
<h3 class="headline">Turn man's best friend into man's best personal assistant. <a href="#">Read More</a></h2>
75+
<h3 class="headline">Turn man's best friend into man's best personal assistant. <a href="#">Read More</a></h3>
7676
</div>
7777
</article>
7878
<article>
7979
<img src="./images/coffee.jpg" alt="A cup of coffee on a table" />
8080
<div class="info">
81-
<h3 class="headline">San Franciscans are losing their minds over this third wave, artisanal, fair trade, handcrafted, locavore coffee. <a href="#">Read More</a></h2>
81+
<h3 class="headline">San Franciscans are losing their minds over this third wave, artisanal, fair trade, handcrafted, locavore coffee. <a href="#">Read More</a></h3>
8282
</div>
8383
</article>
8484
<article>
8585
<img src="./images/football.jpg" alt="A football player hands the ball off to another player" />
8686
<div class="info">
87-
<h3 class="headline">Sportsball team scores a touchpoint to win the big race. <a href="#">Read More</a></h2>
87+
<h3 class="headline">Sportsball team scores a touchpoint to win the big race. <a href="#">Read More</a></h3>
8888
</div>
8989
</article>
9090
</div>

lesson4-semantics-navigating/08-link-text/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
<header>
99
<nav class="container">
1010
<a class="logo" href="/"><img alt="Bondi Brunch" src="logo.png" height="79px" width="432px"></a>
11-
<span class="tabs">
11+
<div class="tabs">
1212
<span class="tab"><span class="tab-link" id="menus">Menus</span></span>
1313
<span class="tab"><span class="tab-link" id="opening">Opening hours</span></span>
1414
<span class="tab"><span class="tab-link" id="location">Location</span></span>
1515
<span class="tab"><span class="tab-link" id="photos">Photos</span></span>
16-
</nav>
17-
</div>
16+
</div>
17+
</nav>
1818
</header>
1919
<main>
2020
<div class="container">

0 commit comments

Comments
 (0)