CIS 5.2, Spring 2010 Word and the WWW

Slides:



Advertisements
Similar presentations
Imagining the Future. WORLD WIDE WEB Tim Berners-Lee invented the World Wide Web.World Wide Web A graduate of Oxford University, England, in 1989, Tim.
Advertisements

Internet and WWW CS216. Open System Interconnection (OSI)
Basic Internet Terms Digital Design. Arpanet The first Internet prototype created in 1965 by the Department of Defense.
Infrastructure for Electronic Commerce
Introduction to Web Pages. Slide 2 Lecture Overview Evolution of the Internet and Web Web Protocols.
1 Chapter 2 Infrastructure for Electronic Commerce.
1 Internet History Internet made up of thousands of networks worldwide No one in charge of Internet - No governing body Internet backbone owned by private.
Lecture slides prepared for “Business Data Communications”, 7/e, by William Stallings and Tom Case, Chapter 8 “TCP/IP”.
Internet Services -World Wide Web - -Conferencing and Newsgroups -File Transfer & Updating -Chat/Instant Messaging.
Internet Fundamentals and Background
Computer Science 101 Introduction to Web Pages. Origins of the Web Vannevar Bush (Memex, 1945) Ted Nelson (Xanadu, 1968) Doug Englebart and Alan Kay (
Networks QUME 185 Introduction to Computer Applications.
CIS 1310 – HTML & CSS 1 Introduction to the Internet.
Introduction To Internet
The Internet The internet is simply a worldwide computer network that uses standardised communication protocols to transmit and exchange data.
Bridges To Computing General Information: This document was created for use in the "Bridges to Computing" project of Brooklyn College. You are invited.
Web Based Systems for Engineering and Management Professors Iris D. Tommelein and Arpad Horvath Fall 2000.
INTERNET PROTOCOLS. Microsoft’s Internet Information Server Home Page Figure IT2031 UNIT-3.
CS1001 Lecture 7. Overview Computer Networks Computer Networks The Internet The Internet Internet Services Internet Services Markup Languages Markup Languages.
Protocols Monil Adhikari. Agenda Introduction Port Numbers Non Secure Protocols FTP HTTP Telnet POP3, SMTP Secure Protocols HTTPS.
Web Design New Brighton High School Exploring the History of the World Wide WebWorld Wide Web.
Another Model?! The TCP/IP Reference Model By: Allan Johnson.
Computer Terms! What is a URL? UNIFORM RESOURCE LOCATOR This term refers to an “address” for web pages! How do I get to your “house”? I need the address.
Chapter 6.  Internet and characteristics of Internet.  Various Internet protocols  Static IP addressing and Dynamic IP addressing Prepared by Saher.
A BRIEF HISTORY OF THE INTERNET, WEB, AND HTML. Internet vs. World Wide Web What is The Internet? The Internet is a massive network of networks, a networking.
World Wide Web. The World Wide Web is a system of interlinked hypertext documents accessed via the Internet The World Wide Web is a system of interlinked.
A BRIEF HISTORY OF THE INTERNET, WEB, AND HTML. Internet vs. World Wide Web What is The Internet? The Internet is a massive network of networks, a networking.
Web Development & Design Foundations with XHTML Chapter 1 Key Concepts 1.
Distributed OS.
LECTURE 1 (ETCS-308) Subject teacher : Ms. Gunjan Beniwal
CIS 141 Western Kentucky University
BASIC CONCEPTS ON INTERNET &
Introduction to HTML Section A – Programming, HTML
Technologies and Applications
Computer Networks.
CISC103 Web Development Basics: Web site:
History of the internet
HTML (Hyper Text Markup Language) HTTP (Hyper Text Transfer Protocol)
CS1001 Lecture 8.
CASE STUDY -HTML,URLs,HTTP
3.0 HTML-CSS WORKSHOP PRESENTATION FOR STUDENTS IN 4º DEGREE OF COMPULSORY SECONDARY EDUCATION.
Some bits on how it works
Protocols and networks in the TCP/IP model initially.
Internet and the web Summary of terms discusses and review
Professional Web Designing For Absolute Beginners
High Points CSCI 1710 Spring 2016.
Internet Fundamentals and Background
(or how to build a webpage)
HTTP: the hypertext transfer protocol
The World Wide Web and the Internet Extended Learning Module B
Web Development & Design Chapter 1, Sections 4, 5 & 6
Internet Fundamentals and Background
Internet.
CISC103 Web Development Basics: Web site:
Topic 5: Communication and the Internet
Computer Network Definition
1 Introduction to the Internet.
Web Design & Development
ECEN “Internet Protocols and Modeling”
The Internet An Overview.
CIS 3.5, Spring 2010 Lecture II.1 Topics: Internet and WWW Overview
Lecture 6: TCP/IP Networking 1nd semester By: Adal ALashban.
Internet & Web.
1 TRANSMISSION CONTROL PROTOCOL / INTERNET PROTOCOL (TCP/IP) K. PALANIVEL Systems Analyst, Computer Centre Pondicherry University, Puducherry –
Protocols 2 Key Revision Points.
COM 205 Multimedia Applications
HISTORY OF THE INTERNET
Educational Computing
Unit-3.
COM 205 Multimedia Applications
Presentation transcript:

CIS 5.2, Spring 2010 Word and the WWW Topics: Internet and WWW Overview History Technologies Webpages Word and the Web What you can do. Why you shouldn’t do it.

Networks When computers talk to each other, this is called a network. The network can have different kinds of computers and peripherals attached to it. Networks in which computers are physically connected to each other in the close geographical proximity are called local area networks (LANs) Other networks are called wide area networks (WANs) The internet is a wide area network. The internet is an open system = “a system whose architecture is not a secret”

  Protocols Definition: protocol = set of rules for how computers communicate with each other. Examples: Lower Level Protocols – TCP: transmission control protocol (computer <-> computer) – IP: internet protocol (computer <-> computer) Higher Level Protocols – HTTP: hypertext transfer protocol (program <-> program ) – FTP: file transfer protocol (program <-> program ) – SMTP: simple mail transfer protocol (program <-> program ) For more information: http://en.wikipedia.org/wiki/Internet_protocol_suite

What is the internet? The internet is a WAN. History   History Motivated by military desire for secure, reliable, efficient communications in the result of a nuclear war. ARPAnet (circa 1971): used “NCP” TCP (1974): hardware independent. Open internet was standardized in September 1981 Fundamental idea: Uses "data packets" to move information (packet switching). Allows communication without a "dedicated connection".

What is the World Wide Web? The world-wide web (WWW) is NOT the internet!   History: The idea of the world-wide web was conceived by Sir Tim Berners-Lee Developed and discussed at CERN in Switzerland from about 1989 Made public in 1994 Fundamentals:  The WWW uses the internet, but is not the internet itself The WWW is a way of organizing and viewing data that is accessible through the internet

How does the Web Work

HTML Pages Are documents containing text. Markup tags are used to add formatting and presentation information: <b> bold </b> <i> italics </i> <h1> This will be a LARGE header. </h1> MS Word can create documents with this markup automatically… but most of the time you don’t want to do this. Plain text editors (notepad are preferable)