diff --git a/docs/card.html b/docs/card.html index d6f7e7c..4ca4469 100644 --- a/docs/card.html +++ b/docs/card.html @@ -70,7 +70,7 @@
&nav;
element, like images or text that are not part of the navigation menu.<nav>
element, like images or text that are not part of the navigation menu.<header> + <a href="#" class="logo">Logo</a> + <button>Home</button> + <a href="#" class="button">News</a> + <span>|</span> + <button>About</button> + <button>Contact</button> +</header>
.logo
class for the first child (either textual element or image)<header>
must be <button>
, <label class="button">
or <a class="button">
elements<span>
elements as separators<button>
element or of the .button
class<nav> + <a href="#">Home</a> + <span>News</span> + <a href="#" class="sublink-1">New Courses</a> + <a href="#" class="sublink-1">Certifications</a> + <span class="sublink-1">Events</span> + <a href="#" class="sublink-2">Course Showcase - 12th, Dec</a> + <a href="#" class="sublink-2">Staff AMA - 16th, Dec</a> + <a href="#" class="sublink-1">Policy Update</a> + <a href="#">About</a> + <a href="#">Contact</a> +</nav>
<nav>
element, populate it with links.sublink-1
and .sublink-2
classes to create subcategories in your navigation menu<footer> + <p>© 2001-2016 Web Corporation | <a href="#">About</a> | <a href="#">Terms of use</a></p> +</footer>