Introduction to Web Pages

Slides:



Advertisements
Similar presentations
Getting a Taste of Cascading Stylesheets Steve Mooradian December 14, 2005.
Advertisements

 To publish information for global distribution, one needs a universally understood language, a kind of publishing mother tongue that all computers may.
1 HTML 4.01 Student: Ling Liao Overview Introduction An example of HTML Problems of HTML Summary.
1 Web Development & Design Foundations with XHTML Chapter 1 Key Concepts.
Introduction to Web Pages. Slide 2 Lecture Overview Evolution of the Internet and Web Web Protocols.
Introduction to Internet & Web1 Chapter 1: Introduction to Internet & Web Objectives: –To show the developments of Internet and its protocols from a historical.
Internet. Common Terms b The documents placed on the World Wide Web? b The language in which Web pages are written? b The element of a Web page that connects.
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.
WEB DESIGN SOME FOUNDATIONS. SO WHAT IS THIS INTERNET.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. 1.
CSE 154 LECTURE 1: BASIC HTML AND CSS. The Internet Wikipedia: a connection.
1 Web Developer & Design Foundations with XHTML Chapter 1 Key Concepts.
Copyright © cs-tutorial.com. Introduction to Web Development In 1990 and 1991,Tim Berners-Lee created the World Wide Web at the European Laboratory for.
1 Web Developer Foundations: Using XHTML Chapter 1 Key Concepts.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. Revised 1/12/2015 by William Pegram 1.
© 2000 – All Rights Reserved - Page 1 The World Wide Web The World Wide Web.
How did the internet develop?. What is Internet? The internet is a network of computers linking many different types of computers all over the world.
CIS 1310 – HTML & CSS 1 Introduction to the Internet.
1 Web Development & Design Foundations with XHTML Chapter 1 Key Concepts.
ITEC 745 Instructional Web Authoring I Week 1. Required Entry Skills Grading –Homework + Midterm Exam + Final Project –No final exam Overview of Course.
Introduction to the Internet and World Wide Web. The Internet n A network of networks n Began in 1969 as ARPAnet (Advanced Research Projects Agency) n.
World Wide Web.
CA Professional Web Site Development Class 2: Anatomy of a Web Site and Web Page & Intro to HTML.
Chapter 1 Internet & Web Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D. 1.
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
Session: 1. © Aptech Ltd. 2Introduction to the Web / Session 1  Explain the evolution of HTML  Explain the page structure used by HTML  List the drawbacks.
Session 1 Chapter 1 - Introduction to Web Development ITI 133: HTML5 Desktop and Mobile Level I
Internet and Intranet Fundamentals Class 3 Session B.
CSCI-235 Micro-Computers in Science The Internet and World Wide Web.
Introduction to the World Wide Web & Internet CIS 101.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
Web Design Principles 5 th Edition Chapter 3 Writing HTML for the Modern Web.
Website Design and Construction Services and Standards.
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.
CIS 1203 Web Technologies Introduction to the Internet and the WWW.
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.
HTML PROJECT #1 Project 1 Introduction to HTML. HTML Project 1: Introduction to HTML 2 Project Objectives 1.Describe the Internet and its associated key.
The World Wide Web.
Web Technologies Computing Science Thompson Rivers University
Introduction to the Internet and World Wide Web
HTML, XHTML, and the World Wide Web
Introduction to the Web
JavaScript and Ajax (Internet Background)
Introducing XHTML: Module A: Web Design Basics
Introducing XHTML: Module A: Web Design Basics
CNIT 131 Internet Basics & Beginning HTML
Evolution of Internet.
Project 1 Introduction to HTML.
Lecture 8. HTML. Author: Aleksey Semyonov
Introduction to XHTML.
XHTML 1 by Carsomyr.
전산정보학부 권춘우 HTML 기원과 변천.
الوحدة 5 مقدمة في شبكة الانترنت.
Internet Programming.
Who is Tim Berners-Lee? Born 8 June 1955 in London (age 59)
1 Introduction to the Internet.
browser search engine web page
Chapter 1 HTML, XHTML, and the World Wide Web
The Internet An Overview.
HTML5 Level I Session I Chapter 1 - Introduction to Web Development
The Web Standards Process
Tutorial Developing a Basic Web Page
Introduction to WWW Past  Present  Future.
Introduction to the Internet and World Wide Web
HTML What is Html? HTML stands for Hypertext Markup Language.
Introduction to World Wide Web
Web Technologies Computing Science Thompson Rivers University
Web Skills.
Internet and the world wide web (www)
Basics of Web Design Chapter 1 Internet & Web Basics Key Concepts
Presentation transcript:

Introduction to Web Pages

Lecture Overview Evolution of the Internet and Web Web Protocols

History of the Internet It began as the ARPANET It became NSFNET while funded by the National Science Foundation There was no WWW It was really just FTP e-mail and Usenet news There were no search engines

History of the Web In 1991, Tim Berners-Lee created the Web at the Particle Physics Laboratory in Cern Switzerland He established the World Wide Web Consortium (W3C) in 1994 to foster international standards Today the W3C defines standards for most Web-based protocols

Internet / Web Standards Internet Engineering Task Force (IETF) The Internet Architecture Board (IAB)is a standing committee of the IETF They publish RFCs The World Wide Web Consortium (W3C) publishes standards for the Web

A Brief History of HTML 1989: Created by Tim Berners-Lee 1994: HTML specification released along with DTD Netscape formed W3C was formed 1995 HTML3 draft (draft expired) Internet Explorer released Cascading Style Sheets

A Brief History of HTML 1997: Html 4.0 Draft 1999: HTML 4.01 2001: XHTML 1.1 (XHTML 2.0 died) 2008: HTML5 working draft

Web Markup Languages In the beginning there was the Standard Generalized Markup Language (SGML) It was unruly HTML was created to “markup” Web pages XML was created to represent just about any kind of data XHTML is HTML written in XML HTML 5 is the next generation of HTML We will use HTML 5 in this course They are not all that different

The World Wide Web Consortium The W3C is the standards setting body for various protocols HTTP HTML XML And many more Visit www.w3.org

Web Page Round Trip Client (Request) Server (Receive) Client (Render) Server (Send HTML) Server (Process)

A Word about Web Browsers Everyone has their favorite IE, FireFox, Chrome, … As we begin to program more, we will learn about differences between one browser and the next and the challenges of programming against different browsers Not to mention the mobile world I’ll use Chrome in the course because of its rich HTML debugging capabilities