Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the tab navigation order #69

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions lesson2-focus/02-dom-order/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,14 @@
<h1 class="logo">The Funion</h1>
<!-- Maybe this could be improved with aria-activedescendant later? -->
<nav class="menu">
<a href="#" class="btn-search pull-right"><img src="./images/search.svg" alt="Search" />Search</a>
<a href="#">Politics</a>
<a href="#">Business</a>
<a href="#">Entertainment</a>
<a href="#">Sports</a>
<a href="#" class="btn-search pull-right"><img src="./images/search.svg" alt="Search" />Search</a>
</nav>
</div>
</header>
<div class="newsletter">
<div class="container">
<h3>Like the Funion? Consider joining our newsletter!</h3>
<input type="text">
<button>Sign Up</button>
</div>
</div>
<main class="container">
<h2 class="offscreen">Top story</h2>
<article class="main-story">
Expand Down Expand Up @@ -90,6 +83,15 @@ <h3 class="headline">Sportsball team scores a touchpoint to win the big race. <a
</div>
</div>
</main>

<footer class="newsletter">
<div class="container">
<h3>Like the Funion? Consider joining our newsletter!</h3>
<input type="text">
<button>Sign Up</button>
</div>
</footer>

</body>

</html>