SlideShare a Scribd company logo
1 of 30
Chapter 1
Internet & Web Basics
Key Concepts
Copyright © 2013
Terry Ann Morris, Ed.D.
1
Learning Outcomes
 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 Internet protocols
 Define URIs and domain names
 Describe XHTML and HTML
 Create your first web page
 Use the body, head, title and meta elements
 Name, save, and test a web page
2
The Evolution of the Internet
 Internet
 Interconnected network of computer networks
 ARPAnet
○ Advanced Research Project Agency
○ 1969 – four computers connected
 NSFnet
○ National Science Foundation
 Use of the Internet was originally limited to
government, research and academic use
 1991 Commercial ban lifted
3
Growth of the Internet
Figure 1.1 Growth of Internet Usage
Statistics from www.internetworldstats.com. Copyright © 2001 -
2012, Miniwatts Marketing Group. All rights reserved worldwide.
4
Reasons for
Internet Growth in the 1990s
 Removal of the ban on commercial activity
 Development of the World Wide Web by Tim Berners-
Lee at CERN
 Development of Mosaic, the first graphics-based web
browser at NCSA
 Convergence of technologies:
 Affordable personal computers with GUI Operating Systems
 Affordable Internet service providers
5
The World Wide Web
The graphical user interface to information
stored on some of the computers
connected to the Internet.
6
Web Standards
and the W3C Consortium
W3C – World Wide Web Consortium
 Develops recommendations and prototype
technologies related to the Web
 Produces specifications, called Recommendations,
in an effort to standardize web technologies
 WAI – Web Accessibility Initiative
7
Web Accessibility
“The power of the Web is in its universality. Access by
everyone regardless of disability is an essential
aspect.” – Tim Berners-Lee
 Accessible Websites
provide accommodations that help individuals
to individuals with visual, auditory, physical,
and neurological disabilities overcome barriers
 WAI – Web Accessibility Initiative
 Develops accessibility recommendations
 WCAG 2.0
 Web Content Accessibility Guidelines
http://www.w3.org/WAI/WCAG20/quickref/
8
Web Accessibility
Section 508 of the Rehabilitation Act
Requires that government agencies must give
individuals with disabilities access to information
technology that is comparable to the access
available to others
9
Universal Design
“The design of products and
environments to be usable by all people,
to the greatest extent possible, without
the need for adaptation or specialized
design.”
– The Center for Universal Design
http://www.design.ncsu.edu/cud/about_ud/about_ud.htm
10
Information on the Web
 Reliability and information
 Evaluate the credibility of the site
 Ethical use of information
 Copyright and the Web
11
Network Overview
Network
two or more computers connected together for the
purpose of communicating and sharing resources
12
The Client/Server Model
 Client/Server can describe a relationship between
two computer programs – the "client" and the
"server".
 Client
 requests some type of service (such as a file or
database access) from the server.
 Server
 fulfills the request and transmits the results to the client
over a network
13
The Client/Server Model
 The Internet
Client/Server Model
 Client: Web Browser
 Server: Web Server
14
Internet Protocols
 Protocols
› Rules that describe the methods used for
clients and servers to communicate with
each other over a network.
 There is no single protocol that makes the
Internet and Web work.
 A number of protocols with specific
functions are needed.
15
Common Internet
Protocols
 Official Communication Protocol: TCP/IP
 Specialized Protocols:
 File Transfer: FTP
 E-mail: SMTP, POP3, IMAP
 Websites: HTTP
16
HTTP
Hypertext Transfer Protocol
 A set of rules for exchanging files such as text,
graphic images, sound, video, and other
multimedia files on the Web.
 Web browsers send HTTP requests for web pages and
their associated files.
 Web servers send HTTP responses back to the web
browsers.
17
HTTP Request
HTTP Response
IP Address
 Each device connected to the Internet has a
unique numeric IP address.
 These addresses consist of a set of four groups
of numbers, called octets.
74.125.73.106 will get you Google!
 An IP address may correspond to a domain
name.
18
Domain Name
 Locates an organization or other entity on the
Internet
 Domain Name System
◦ Divides the Internet into logical groups and
understandable names
◦ Associates unique computer IP Addresses with the
text-based domain names you type into a web
browser
◦ Browser: http://google.com
◦ IP Address: 74.125.73.106
19
URI
Uniform Resource Indicator
URL
Uniform
Resource
Locator
Represents
the address
of a resource
on the Internet.
20
TLD
Top-Level Domain Name
 A top-level domain (TLD) identifies the right-
most part of the domain name.
 Some generic TLDs:
.com, .org, .net, .mil, .gov, .edu, .int, .aero,
.asia, .cat, .jobs, .name, .biz, .museum, .info,
.coop, .pro, .travel
21
County Code
TLDs
 Two character codes originally intended to indicate
the geographical location (country) of the web site.
 In practice, it is fairly easy to obtain a domain
name with a country code TLD that is not local to
the registrant.
 Examples:
 .tv, .ws, .au, .jp, .uk
 See http://www.iana.org/cctld/cctld-whois.htm
22
Domain Name System
 The Domain Name System (DNS) associates
Domain Names with IP addresses.
23
23
Domain Name
IP Address
Use TPC/IP
to send HTTP Request
Web
Server
Use TCP/IP
to send HTTP Responses
with web page files & images
Web Browser
requests web page
Web Browser
displays web page
DNS
Markup Languages
 SGML – Standard Generalized Markup
Language
› A standard for specifying a markup language or
tag set
 HTML – Hypertext Markup Language
› The set of markup symbols or codes placed in a
file intended for display on a web browser.
 Element or tag – individual markup code
 Attribute – modifies the purpose of a tag
24
Markup Languages (2)
 XML – eXtensible Markup Language
 A text-based language designed to describe, deliver,
and exchange structured information.
 It is not intended to replace HTML –
it is intended to extend the power of HTML by
separating data from presentation.
25
Markup Languages (3)
 XHTML – eXtensible Hypertext Markup Language
 Developed by the W3C as the reformulation of HTML 4.0
as an application of XML.
 It combines the formatting strengths of HTML 4.0 and the
data structure and extensibility strengths of XML.
26
Markup Languages (4)
 HTML 5
› The next version of HTML 4 and XHTML 1
 Currently in draft status
 Incorporates features of both HTML and XHTML
 Adds new elements
 Eliminates some elements
 Intended to be backward compatible
› http://www.w3.org/html/
27
Your First HTML5 Web Page:
index.html
<!DOCTYPE html">
<html lang="en">
<head>
<title>Page Title Goes Here</title>
<meta charset="utf-8">
</head>
<body>
... body text and more HTML tags go here ...
</body>
</html>
28
Under the Hood of
a Web Page
DTD – describes the markup language syntax
HTML element– contains the web page document
Head element – contains the head section
The head section contains information that describes the
web page document
Title element– Text displays in title bar of window
Meta element – describes the character encoding
Body element – contains the body section
The body section contains the text and elements that
display in the browser viewport.
29
Summary
This chapter provided a brief overview of
Internet, Web, and introductory networking
concepts along with your very first web
page.
30

More Related Content

Similar to ch01-internet.ppt

Basics of Internet and WWW
Basics of Internet and WWWBasics of Internet and WWW
Basics of Internet and WWWSagar Rai
 
Introduction to Information Technology Lecture Slides PPT
Introduction to Information Technology Lecture Slides PPTIntroduction to Information Technology Lecture Slides PPT
Introduction to Information Technology Lecture Slides PPTOsama Yousaf
 
abdelwahab alsammak_Chapter 1-Internet concepts.ppt
abdelwahab alsammak_Chapter 1-Internet concepts.pptabdelwahab alsammak_Chapter 1-Internet concepts.ppt
abdelwahab alsammak_Chapter 1-Internet concepts.pptDavid319172
 
Web programming by Najeeb ullahAzad(1)
Web programming by Najeeb ullahAzad(1)Web programming by Najeeb ullahAzad(1)
Web programming by Najeeb ullahAzad(1)azadmcs
 
The Internet
The InternetThe Internet
The InternetJVGAJJAR
 
Introduction to the Internet
Introduction to the InternetIntroduction to the Internet
Introduction to the Internetcoastalgraphics
 
Hyper Text Markup Language, Cascading Style Sheet
Hyper Text Markup Language, Cascading Style SheetHyper Text Markup Language, Cascading Style Sheet
Hyper Text Markup Language, Cascading Style SheetNitinShelake4
 
Web Technologies Introduction to web technologies
Web Technologies Introduction to web technologiesWeb Technologies Introduction to web technologies
Web Technologies Introduction to web technologiesVigneshkumar Ponnusamy
 
LESSON 1 UCI 201 internet and the world wide web.pptx
LESSON 1 UCI 201 internet and the world wide web.pptxLESSON 1 UCI 201 internet and the world wide web.pptx
LESSON 1 UCI 201 internet and the world wide web.pptxBethwelBethwel
 

Similar to ch01-internet.ppt (20)

Chapter1
Chapter1Chapter1
Chapter1
 
Web acronyms
Web acronymsWeb acronyms
Web acronyms
 
Internet
Internet Internet
Internet
 
Basics of Internet and WWW
Basics of Internet and WWWBasics of Internet and WWW
Basics of Internet and WWW
 
Introduction to Information Technology Lecture Slides PPT
Introduction to Information Technology Lecture Slides PPTIntroduction to Information Technology Lecture Slides PPT
Introduction to Information Technology Lecture Slides PPT
 
abdelwahab alsammak_Chapter 1-Internet concepts.ppt
abdelwahab alsammak_Chapter 1-Internet concepts.pptabdelwahab alsammak_Chapter 1-Internet concepts.ppt
abdelwahab alsammak_Chapter 1-Internet concepts.ppt
 
Uta005 lecture1
Uta005 lecture1Uta005 lecture1
Uta005 lecture1
 
Web programming by Najeeb ullahAzad(1)
Web programming by Najeeb ullahAzad(1)Web programming by Najeeb ullahAzad(1)
Web programming by Najeeb ullahAzad(1)
 
www module 1.pptx
www module 1.pptxwww module 1.pptx
www module 1.pptx
 
The internet
The internetThe internet
The internet
 
The Internet
The InternetThe Internet
The Internet
 
Daley7 ppt 07
Daley7 ppt 07Daley7 ppt 07
Daley7 ppt 07
 
Introduction to the Internet
Introduction to the InternetIntroduction to the Internet
Introduction to the Internet
 
Ch07 the internet intranets and extranets
Ch07 the internet  intranets and extranetsCh07 the internet  intranets and extranets
Ch07 the internet intranets and extranets
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Hyper Text Markup Language, Cascading Style Sheet
Hyper Text Markup Language, Cascading Style SheetHyper Text Markup Language, Cascading Style Sheet
Hyper Text Markup Language, Cascading Style Sheet
 
Assignment 01
Assignment 01Assignment 01
Assignment 01
 
Web Technologies Introduction to web technologies
Web Technologies Introduction to web technologiesWeb Technologies Introduction to web technologies
Web Technologies Introduction to web technologies
 
LESSON 1 UCI 201 internet and the world wide web.pptx
LESSON 1 UCI 201 internet and the world wide web.pptxLESSON 1 UCI 201 internet and the world wide web.pptx
LESSON 1 UCI 201 internet and the world wide web.pptx
 
unit-5 (2).pdf
unit-5 (2).pdfunit-5 (2).pdf
unit-5 (2).pdf
 

More from ssuser8afefa

psy101 ntro.html.ppt
psy101 ntro.html.pptpsy101 ntro.html.ppt
psy101 ntro.html.pptssuser8afefa
 
chapter1introductiontocompensationandbenefits-190625070552.pdf
chapter1introductiontocompensationandbenefits-190625070552.pdfchapter1introductiontocompensationandbenefits-190625070552.pdf
chapter1introductiontocompensationandbenefits-190625070552.pdfssuser8afefa
 
2012_12_04_office_organizati (1).ppt
2012_12_04_office_organizati (1).ppt2012_12_04_office_organizati (1).ppt
2012_12_04_office_organizati (1).pptssuser8afefa
 
E-payment Systems .pptx
E-payment Systems .pptxE-payment Systems .pptx
E-payment Systems .pptxssuser8afefa
 
Applications Of E-Business .pptx
Applications Of E-Business .pptxApplications Of E-Business .pptx
Applications Of E-Business .pptxssuser8afefa
 
E-Commerce and Digital Marketing Wilson Lecture 1 .pptx
E-Commerce and Digital Marketing  Wilson Lecture 1 .pptxE-Commerce and Digital Marketing  Wilson Lecture 1 .pptx
E-Commerce and Digital Marketing Wilson Lecture 1 .pptxssuser8afefa
 
Media And Circuit Of Culture .pptx
Media And Circuit Of Culture .pptxMedia And Circuit Of Culture .pptx
Media And Circuit Of Culture .pptxssuser8afefa
 
SymbolicInteractionism .ppt
SymbolicInteractionism .pptSymbolicInteractionism .ppt
SymbolicInteractionism .pptssuser8afefa
 
Communication_Models_on_Media_Systems_Pr .pptx
Communication_Models_on_Media_Systems_Pr .pptxCommunication_Models_on_Media_Systems_Pr .pptx
Communication_Models_on_Media_Systems_Pr .pptxssuser8afefa
 
1384079360project_ideas_(1).pptx
1384079360project_ideas_(1).pptx1384079360project_ideas_(1).pptx
1384079360project_ideas_(1).pptxssuser8afefa
 
AIMA-Consumer Behavior.ppt
AIMA-Consumer Behavior.pptAIMA-Consumer Behavior.ppt
AIMA-Consumer Behavior.pptssuser8afefa
 
Business Plan.pptx
Business Plan.pptxBusiness Plan.pptx
Business Plan.pptxssuser8afefa
 
340 lamb jw 14 mktg comm
340 lamb jw 14 mktg comm340 lamb jw 14 mktg comm
340 lamb jw 14 mktg commssuser8afefa
 

More from ssuser8afefa (17)

psy101 ntro.html.ppt
psy101 ntro.html.pptpsy101 ntro.html.ppt
psy101 ntro.html.ppt
 
Motivation.ppt
Motivation.pptMotivation.ppt
Motivation.ppt
 
chapter1introductiontocompensationandbenefits-190625070552.pdf
chapter1introductiontocompensationandbenefits-190625070552.pdfchapter1introductiontocompensationandbenefits-190625070552.pdf
chapter1introductiontocompensationandbenefits-190625070552.pdf
 
2012_12_04_office_organizati (1).ppt
2012_12_04_office_organizati (1).ppt2012_12_04_office_organizati (1).ppt
2012_12_04_office_organizati (1).ppt
 
E-payment Systems .pptx
E-payment Systems .pptxE-payment Systems .pptx
E-payment Systems .pptx
 
Applications Of E-Business .pptx
Applications Of E-Business .pptxApplications Of E-Business .pptx
Applications Of E-Business .pptx
 
ch01_bb.ppt
ch01_bb.pptch01_bb.ppt
ch01_bb.ppt
 
E-Commerce and Digital Marketing Wilson Lecture 1 .pptx
E-Commerce and Digital Marketing  Wilson Lecture 1 .pptxE-Commerce and Digital Marketing  Wilson Lecture 1 .pptx
E-Commerce and Digital Marketing Wilson Lecture 1 .pptx
 
new media.ppt
new media.pptnew media.ppt
new media.ppt
 
Media And Circuit Of Culture .pptx
Media And Circuit Of Culture .pptxMedia And Circuit Of Culture .pptx
Media And Circuit Of Culture .pptx
 
SymbolicInteractionism .ppt
SymbolicInteractionism .pptSymbolicInteractionism .ppt
SymbolicInteractionism .ppt
 
Introduction.ppt
Introduction.pptIntroduction.ppt
Introduction.ppt
 
Communication_Models_on_Media_Systems_Pr .pptx
Communication_Models_on_Media_Systems_Pr .pptxCommunication_Models_on_Media_Systems_Pr .pptx
Communication_Models_on_Media_Systems_Pr .pptx
 
1384079360project_ideas_(1).pptx
1384079360project_ideas_(1).pptx1384079360project_ideas_(1).pptx
1384079360project_ideas_(1).pptx
 
AIMA-Consumer Behavior.ppt
AIMA-Consumer Behavior.pptAIMA-Consumer Behavior.ppt
AIMA-Consumer Behavior.ppt
 
Business Plan.pptx
Business Plan.pptxBusiness Plan.pptx
Business Plan.pptx
 
340 lamb jw 14 mktg comm
340 lamb jw 14 mktg comm340 lamb jw 14 mktg comm
340 lamb jw 14 mktg comm
 

Recently uploaded

Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Recently uploaded (20)

Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 

ch01-internet.ppt

  • 1. Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. 1
  • 2. Learning Outcomes  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 Internet protocols  Define URIs and domain names  Describe XHTML and HTML  Create your first web page  Use the body, head, title and meta elements  Name, save, and test a web page 2
  • 3. The Evolution of the Internet  Internet  Interconnected network of computer networks  ARPAnet ○ Advanced Research Project Agency ○ 1969 – four computers connected  NSFnet ○ National Science Foundation  Use of the Internet was originally limited to government, research and academic use  1991 Commercial ban lifted 3
  • 4. Growth of the Internet Figure 1.1 Growth of Internet Usage Statistics from www.internetworldstats.com. Copyright © 2001 - 2012, Miniwatts Marketing Group. All rights reserved worldwide. 4
  • 5. Reasons for Internet Growth in the 1990s  Removal of the ban on commercial activity  Development of the World Wide Web by Tim Berners- Lee at CERN  Development of Mosaic, the first graphics-based web browser at NCSA  Convergence of technologies:  Affordable personal computers with GUI Operating Systems  Affordable Internet service providers 5
  • 6. The World Wide Web The graphical user interface to information stored on some of the computers connected to the Internet. 6
  • 7. Web Standards and the W3C Consortium W3C – World Wide Web Consortium  Develops recommendations and prototype technologies related to the Web  Produces specifications, called Recommendations, in an effort to standardize web technologies  WAI – Web Accessibility Initiative 7
  • 8. Web Accessibility “The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.” – Tim Berners-Lee  Accessible Websites provide accommodations that help individuals to individuals with visual, auditory, physical, and neurological disabilities overcome barriers  WAI – Web Accessibility Initiative  Develops accessibility recommendations  WCAG 2.0  Web Content Accessibility Guidelines http://www.w3.org/WAI/WCAG20/quickref/ 8
  • 9. Web Accessibility Section 508 of the Rehabilitation Act Requires that government agencies must give individuals with disabilities access to information technology that is comparable to the access available to others 9
  • 10. Universal Design “The design of products and environments to be usable by all people, to the greatest extent possible, without the need for adaptation or specialized design.” – The Center for Universal Design http://www.design.ncsu.edu/cud/about_ud/about_ud.htm 10
  • 11. Information on the Web  Reliability and information  Evaluate the credibility of the site  Ethical use of information  Copyright and the Web 11
  • 12. Network Overview Network two or more computers connected together for the purpose of communicating and sharing resources 12
  • 13. The Client/Server Model  Client/Server can describe a relationship between two computer programs – the "client" and the "server".  Client  requests some type of service (such as a file or database access) from the server.  Server  fulfills the request and transmits the results to the client over a network 13
  • 14. The Client/Server Model  The Internet Client/Server Model  Client: Web Browser  Server: Web Server 14
  • 15. Internet Protocols  Protocols › Rules that describe the methods used for clients and servers to communicate with each other over a network.  There is no single protocol that makes the Internet and Web work.  A number of protocols with specific functions are needed. 15
  • 16. Common Internet Protocols  Official Communication Protocol: TCP/IP  Specialized Protocols:  File Transfer: FTP  E-mail: SMTP, POP3, IMAP  Websites: HTTP 16
  • 17. HTTP Hypertext Transfer Protocol  A set of rules for exchanging files such as text, graphic images, sound, video, and other multimedia files on the Web.  Web browsers send HTTP requests for web pages and their associated files.  Web servers send HTTP responses back to the web browsers. 17 HTTP Request HTTP Response
  • 18. IP Address  Each device connected to the Internet has a unique numeric IP address.  These addresses consist of a set of four groups of numbers, called octets. 74.125.73.106 will get you Google!  An IP address may correspond to a domain name. 18
  • 19. Domain Name  Locates an organization or other entity on the Internet  Domain Name System ◦ Divides the Internet into logical groups and understandable names ◦ Associates unique computer IP Addresses with the text-based domain names you type into a web browser ◦ Browser: http://google.com ◦ IP Address: 74.125.73.106 19
  • 21. TLD Top-Level Domain Name  A top-level domain (TLD) identifies the right- most part of the domain name.  Some generic TLDs: .com, .org, .net, .mil, .gov, .edu, .int, .aero, .asia, .cat, .jobs, .name, .biz, .museum, .info, .coop, .pro, .travel 21
  • 22. County Code TLDs  Two character codes originally intended to indicate the geographical location (country) of the web site.  In practice, it is fairly easy to obtain a domain name with a country code TLD that is not local to the registrant.  Examples:  .tv, .ws, .au, .jp, .uk  See http://www.iana.org/cctld/cctld-whois.htm 22
  • 23. Domain Name System  The Domain Name System (DNS) associates Domain Names with IP addresses. 23 23 Domain Name IP Address Use TPC/IP to send HTTP Request Web Server Use TCP/IP to send HTTP Responses with web page files & images Web Browser requests web page Web Browser displays web page DNS
  • 24. Markup Languages  SGML – Standard Generalized Markup Language › A standard for specifying a markup language or tag set  HTML – Hypertext Markup Language › The set of markup symbols or codes placed in a file intended for display on a web browser.  Element or tag – individual markup code  Attribute – modifies the purpose of a tag 24
  • 25. Markup Languages (2)  XML – eXtensible Markup Language  A text-based language designed to describe, deliver, and exchange structured information.  It is not intended to replace HTML – it is intended to extend the power of HTML by separating data from presentation. 25
  • 26. Markup Languages (3)  XHTML – eXtensible Hypertext Markup Language  Developed by the W3C as the reformulation of HTML 4.0 as an application of XML.  It combines the formatting strengths of HTML 4.0 and the data structure and extensibility strengths of XML. 26
  • 27. Markup Languages (4)  HTML 5 › The next version of HTML 4 and XHTML 1  Currently in draft status  Incorporates features of both HTML and XHTML  Adds new elements  Eliminates some elements  Intended to be backward compatible › http://www.w3.org/html/ 27
  • 28. Your First HTML5 Web Page: index.html <!DOCTYPE html"> <html lang="en"> <head> <title>Page Title Goes Here</title> <meta charset="utf-8"> </head> <body> ... body text and more HTML tags go here ... </body> </html> 28
  • 29. Under the Hood of a Web Page DTD – describes the markup language syntax HTML element– contains the web page document Head element – contains the head section The head section contains information that describes the web page document Title element– Text displays in title bar of window Meta element – describes the character encoding Body element – contains the body section The body section contains the text and elements that display in the browser viewport. 29
  • 30. Summary This chapter provided a brief overview of Internet, Web, and introductory networking concepts along with your very first web page. 30