Week1 Ch1Ch2
Week1 Ch1Ch2
Week 1
AGENDA – WEBD101
• Introduction
• Course Requirements
• Attendance
• Assignment Submissions
• This week
2
Introduction
• I live in Ohio
• I have worked for Franklin University as an adjunct /
employee since Spring 2001
• I also currently work for major telecommunications
company (35 years)
• Have been teaching for over 21 years (17+ online)
• Degrees
– BS Computer Engineering (The Ohio State University)
– MS Computer Engineering (The University of Illinois at Urbana-Champaign)
– MBA in International Business (Ashland University)
3
Introduction (continued)
• “WELCOME – PLEASE READ & RESPOND!” <- READ !!!
– Click where it says HERE under #1 item to get brief intro to class
• brief introduction
• my contact information
• general rules for this course
– learning environment
– attendance
– assignments
• miscellaneous items
• references/external resources
– Click where it says HERE under #2 item to view assignment details
• Course assignments
– Click where it says HERE under #4 item to view additional information
– Click where it says SOFTWARE NEEDED under #5 item for software required
4
LMS Learning Objects to look at:
5
6
7
Attendance
• Must meet at least one of the following before 11:59 PM EST on
Sunday of each week in order to be counted as being present for
that week:
• submit at least one complete assignment for the week (must submit in week in
which assignment is due [or complete quiz])
8
Web Development & Design
Foundations with HTML5
CHAPTER 1
INTRODUCTION TO THE INTERNET AND
WORLD WIDE WEB
9
Copyright © Terry Felke-Morris http://terrymorris.net
Learning Outcomes
In this chapter, you will learn how to
Describe the evolution of the Internet and the Web
Explain the need for web standards
Describe Universal Design
Identify benefits of accessible web design
Identify reliable resources of information on the Web
Identify ethical use of the Web
Describe the purpose of web browsers and web servers
Identify networking protocols
Define URIs and domain names
Describe HTML, XHTML, and HTML5
Describe popular trends in the use of the Web
Extranet
◦ A private network that securely shares part of an
organization’s information or operations with external
partners
WAI
◦ W3C’s Web Accessibility Initiative
http://www.w3.org/WAI
WCAG
◦ Web Content Accessibility Guidelines
http://www.w3.org/WAI/WCAG20/quickref/
Receiving E-mail
◦ POP (POP3) Post Office Protocol
◦ IMAP Internet Mail Access Protocol
Web browsers send HTTP requests for web pages and their
associated files.
◦ http://www.w3.org/html/
◦ http://www.w3schools.com/html/html5_intro.asp
CHAPTER 2
HTML BASICS
Head Section
Contains information that describes the web page document
<head>
…head section info goes here
</head>
Body Section
Contains text and elements that display in the web page document
<body>
…body section info goes here
</body>
Demo
Demo
Demo
<blockquote>
…text goes here…
</blockquote>
◦ Block Display – Configures empty space above and below
Demo
<b> bold text Text that has no extra importance but is styled in bold font by
usage and convention
<em> emphasized Causes text to be emphasized in relation to other text; usually
text
displayed in italics
<i> italicized text Text that has no extra importance but is styled in italics by
usage and convention
<mark> mark text Text that is highlighted in order to be easily referenced
(HTML5 only)
small text Legal disclaimers and notices (“fine print”) displayed in small
<small>
font-size
<strong> strong text Strong importance; causes text to stand out from surrounding
text; usually displayed in bold
<sub> sub text Displays a subscript as small text below the baseline
sup text
<sup> Displays a superscript as small text above the baseline
BROWSER DISPLAY:
Call for a free quote for your web development needs: 888.555.5555
Unordered List
Ordered List
Description List
formerly called a definition list
<ul>
Contains the unordered list
<li>
Contains an item in the list
Demo
◦ <dl>
Contains the description list
◦ <dt>
Contains a term/phrase/sentence
Configures empty space above and below the text
◦ <dd>
Contains a description of the term/phrase/sentence
◦ Indents the text
◦ Configures empty space above and below the text
Demo
Character Code
© ©
< <
> >
& &
Demo
nav Element
<nav></nav>
Contains web page
document’s main navigation
main Element
<main></main>
Contains the web page
document’s main content
footer Element
<footer></footer>
Contains the web page
document’s footer
Copyright © Terry Felke-Morris http://terrymorris.net 61
HTML5
Structural
Elements
<body>
<header> document headings go here </header>
<nav> main navigation goes here </nav>
<main> main content goes here </main>
<footer> document footer information goes here </footer>
</body>
href Attribute
Indicates the file name or URL
Demo
<a href="http://yahoo.com">Yahoo</a>
Relative link
◦ Link to pages on your own site
<a href="index.htm">Home</a>
<a href=“mailto:[email protected]”>[email protected]</a>