Skip to content
This repository has been archived by the owner on Jul 30, 2019. It is now read-only.

Commit

Permalink
update section: example 23
Browse files Browse the repository at this point in the history
actually adding in the content i outlined in [my previous commit](0299b75)
  • Loading branch information
scottaohara committed Apr 17, 2018
1 parent 5c9a22e commit 3f3b669
Showing 1 changed file with 32 additions and 18 deletions.
50 changes: 32 additions & 18 deletions sections/semantics-sections.include
Original file line number Diff line number Diff line change
Expand Up @@ -699,11 +699,11 @@
<nav>
<h2>Folders</h2>
<ul>
<li> <a href="/inbox" onclick="return openFolder(this.href)">Inbox</a> <span class="count"></span></li>
<li> <a href="/sent" onclick="return openFolder(this.href)">Sent</a></li>
<li> <a href="/drafts" onclick="return openFolder(this.href)">Drafts</a></li>
<li> <a href="/trash" onclick="return openFolder(this.href)">Trash</a></li>
<li> <a href="/customers" onclick="return openFolder(this.href)">Customers</a></li>
<li><a href="/inbox" onclick="return openFolder(this.href)">Inbox</a> <span class="count"></span></li>
<li><a href="/sent" onclick="return openFolder(this.href)">Sent</a></li>
<li><a href="/drafts" onclick="return openFolder(this.href)">Drafts</a></li>
<li><a href="/trash" onclick="return openFolder(this.href)">Trash</a></li>
<li><a href="/customers" onclick="return openFolder(this.href)">Customers</a></li>
</ul>
</nav>
</xmp>
Expand Down Expand Up @@ -931,7 +931,7 @@
Use the <a>rank</a> of heading elements to create the document outline.

<div class="example">
The following code shows how to mark up a document outline with six levels of headings.
The following code shows how to mark up a document outline with six levels of headings.

<xmp highlight="html">
<body>
Expand Down Expand Up @@ -1264,7 +1264,7 @@

<xmp highlight="html">
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Ramblings of a Scientist</title>
Expand Down Expand Up @@ -1318,21 +1318,35 @@
<xmp highlight="html">
...
<footer>
<section>
<h2>Articles</h2>
<p>
<img src="images/somersaults.jpeg" alt>
Go to the gym with our somersaults class! Our teacher Jim takes you through the paces in this two-part article.
<a href="articles/somersaults/1">Somersaults: Part 1</a>·
<a href="articles/somersaults/2">Somersaults: Part 2</a>.
</p>
<p>
<img src="images/kindplus.jpeg" alt>
Tired of walking on the edge of a clif<!-- sic -->? Our guest writer Lara shows you how to bumble your way through the bars.
<a href="articles/kindplus/1">Read more...</a>
</p>
<p>
<img src="images/crisps.jpeg" alt>
The chips are down, now all that's left is a potato. What can you do with it?
<a href="articles/crisps/1">Read more...</a>
</p>
</section>
<nav>
<section>
<h2>Articles</h2>
<p><img src="images/somersaults.jpeg" alt=""> Go to the gym with our somersaults class! Our teacher Jim takes you through the paces in this two-part article. <a href="articles/somersaults/1">Part 1</a>· <a href="articles/somersaults/2">Part 2</a></p>
<p><img src="images/kindplus.jpeg"> Tired of walking on the edge of a clif
<!-- sic -->? Our guest writer Lara shows you how to bumble your way through the bars. <a href="articles/kindplus/1">Read more...</a></p>
<p><img src="images/crisps.jpeg"> The chips are down, now all that's left is a potato. What can you do with it? <a href="articles/crisps/1">Read more...</a></p>
</section>
<ul>
<li> <a href="/about">About us...</a></li>
<li> <a href="/feedback">Send feedback!</a></li>
<li> <a href="/sitemap">Sitemap</a></li>
<li><a href="/about">About us...</a></li>
<li><a href="/feedback">Send feedback!</a></li>
<li><a href="/sitemap">Sitemap</a></li>
</ul>
</nav>
<p><small>Copyright © 2018 — <a href="/tos">Terms of Service</a></small></p>
<p>
<small>Copyright © 2018 — <a href="/tos">Terms of Service</a></small>
</p>
</footer>
</body>
</xmp>
Expand Down

0 comments on commit 3f3b669

Please sign in to comment.