Week 02
Week 02
Campbell, J., 2018, Web Design: Introductory (6ed), Cengage, Boston, MA, ISBN 978-1-
337-27793-8
© 2018 Cengage. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
This Weeks Lecture
1. Currency
2. Connectivity
3. Interactivity
4. Cost
5. Delivery
© 2018 Cengage. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a license distributed
with a certain product or service or
1. The Currency Advantage
• Websites can be updated
continuously, while print
publications are only as current as
their date of publication
• To keep visitors on your site,
always supply timely, changing
material
• Use Connectivity tools to
communicate with customers
and enable social media
sharing
2. The Connectivity Advantage
• The web’s connectivity advantage,
or ability to instantaneously
distribute and share content
• Content aggregators
• Digg
• StumbleUpon
• Streamline the writing process
3. The Interactivity Advantage
• Internet and web technologies
promote data and resource
sharing
• Page of contact information
• Links to blog, Twitter feed,
Facebook page
• Account signups
• Web-based forms
• Comments
4. The Cost Advantage
• Updating web content is more cost effective than updating print content
• Web publishing costs do not vary based on length, color, or design
complexity.
• Developing a website can be expensive:
• Web design
• Content writing or adaptation
• Multimedia development
• Website hosting
• Domain name registration
• Promotional Services
5. The Delivery Advantage
• With the same immediacy and cost, the web can reach both global and local
audiences
• Consider the web when the need exists for economical and rapid distribution of
information
Unity and
visual identity
Balance and Proximity
• Complementary colors
The RGB Color System
• Paragraph element
• <p> …paragraph goes here… </p>
• <hr >
• Blockquote element
• Indents a block of text for special emphasis
• <blockquote>
• …text goes here…
• </blockquote>
Phrase Elements
• CODE:
• <p><i>Call for a free quote for your web development needs:
<strong>888.555.5555 </strong></i></p>
• BROWSER DISPLAY:
• Unordered List
• Ordered List
Unordered List
• Character Code
• © ©
• < <
• > >
• & &
•
The div element <div>
• Purpose:
• Configure a specially formatted division or area of a web page
• Block display with empty space above and below the div
• Header Element
<header></header>
Contains the web page
document’s headings
• Nav Element
<nav></nav>
Contains web page
document’s main
navigation
• Footer Element
<footer></footer>
Contains the web page
document’s footer
HTML5 Structural Elements
Example:
<body>
<header> document headings go here </header>
<nav> main navigation goes here </nav>
<div> main content goes here </div>
<footer> document footer information goes here </footer>
</body>
The Anchor Element <a>
• href Attribute
• Indicates the file name or URL
Web page document, photo, pdf, etc.
Hyperlinks
• Absolute link
• Link to other websites
• <a href="http://yahoo.com">Yahoo</a>
• Relative link
• Link to pages on your own site
• Relative to the current page
• <a href="index.html">Home</a>
Opening a Link in a New Browser Window
• <a href="mailto:[email protected]">[email protected]</a>
Writing Valid HTML