reading-notes

Html

Process and Design

Who is the Site For?

Every website should be designed for the target audience, not just for yourself or the site owner.

Why People Visit Your Website?

1- The first attempts to discover the underlying motivations for why visitors come to the site. 2- The second examines the specific goals of the visitors. These are the triggers making them come to the site now.

Site Maps

Example

WireFrames

Wireframes allow you to organize the information that will need to go on each page.

Example

Designing Navigation

Design is about communication. Visual hierarchy helps visitors understand what you are trying to tell them.

Structure

HTML5 Layout

HTML5 is introducing a new set of elements that help define the structure of a page.

New Html5 Layout Elements

HTML5 introduces a new set of elements that allow you to divide up the parts of a page. The names of these elements indicate the kind of content you will find in them. They are still subject to change, but that has not stopped many web page authors using them already

Example

Extra Markup

The Evolution of HTML

Important things in HTML

<!-- and -->

Exapmle

<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
 <meta name="description" content="Telephone, email
 and directions for The Art Bookshop, London, UK" />
 <title>Contact The Art Bookshop, London UK</title>
</head>
<body>
 <div id="header">
 <h1>The Art Book Shop</h1>
 <ul>
 <li><a href="index.html">home</a></li>
 <li><a href="index.html">new publications</a>
 </li>
 <li class="current-page">
 <a href="index.html">contact</a></li>
 </ul>
 </div><!-- end header -->
 <div id="content">
 <p>Charing Cross Road, London, WC2, UK</p>
 <p><span class="contact">Telephone</span>
 0207 946 0946</p>
 <p><span class="contact">Email</span>
 <a href="mailto:books@example.com">
 books@example.com</a></p>
 <iframe width="425" height="275" frameborder="0"
 scrolling="no" marginheight="0" marginwidth="0"
 src="http://maps.google.co.uk/maps?f=q&amp;
 source=s_q&amp;hl=en&amp;geocode=&amp;
 q=charing+cross+road+london&amp;output=embed">
 </iframe>
 </div><!-- end content -->
 <p>&copy; The Art Bookshop</p>
</body>
</html>