View on GitHub

reading-notes

Reading notes for Code 102.

HTML

if you do not have a close tag the web page will not render

<html> duckett

Chapter 18- Process and Design

TERMS

Term Definition
site map diagram of the pages
card sorting placing each piece of info on a paper then organizing into related groups

Wireframes

Visual Hierarchy elements

grouping and similarity

Chapter 1- Structure

Term Usage
<body> </body> everything in this element is shown inside main browser
<head> </head> before body element, contains about and
included with <head>

Chapter 17- HTML5 Layout

example

<header>
<h1>Yoko's Kitchen</h1> 
<nav>
<ul>
<li><a href="" class="current">home</a></li> <li><a href="">classes</a></li>
<li><a href="">catering</a></li>
<li><a href="">about</a></li>
<li><a href="">contact</a></li>
</ul> 
</nav>
</header>
<section class="popular-recipes">
<h2>Popular Recipes</h2>
<a href="">Yakitori (grilled chicken)</a>
<a href="">Tsukune (minced chicken patties)</a> <a href="">Okonomiyaki (savory pancakes)</a> <a href="">Mizutaki (chicken stew)</a>
</section>
<section class="contact-details">
<h2>Contact</h2> <p>Yoko's Kitchen<br />
27 Redchurch Street<br /> Shoreditch<br />
London E2 7DP</p>
</section>
<div class="wrapper"> 
<header>
<h1>Yoko's Kitchen</h1> 
<nav>
<!-- nav content here -->
 </nav>
</header>
<section class="courses">
<!-- section content here --> 
</section>
<aside>
<!-- aside content here --> 
</aside>
<footer>
<!-- footer content here --> 
</footer>
</div><!-- .wrapper -->
    <a>

Chapter 8- Extra Markup

<div id="header">
<img src="images/logo.gif" alt="Anish Kapoor" /> <ul>
<li><a href="index.html">Home</a></li>
<li><a href="biography.html">Biography</a></li> <li><a href="works.html">Works</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div><!-- end of header -->

<= Back