OWL Jan-24-14 How Websites Work. “The Internet” vs. “The Web”?

Slides:



Advertisements
Similar presentations
Basic Internet Terms Digital Design. Arpanet The first Internet prototype created in 1965 by the Department of Defense.
Advertisements

4.01 How Web Pages Work.
Project 1 Introduction to HTML.
The Internet Useful Definitions and Concepts About the Internet.
1 Software Testing and Quality Assurance Lecture 32 – SWE 205 Course Objective: Basics of Programming Languages & Software Construction Techniques.
Topics in this presentation: The Web and how it works Difference between Web pages and web sites Web browsers and Web servers HTML purpose and structure.
The World Wide Web By: Brittney Hardin, Carlos Smith, and David Wilkins.
HTML 1 Introduction to HTML. 2 Objectives Describe the Internet and its associated key terms Describe the World Wide Web and its associated key terms.
WEB DESIGN SOME FOUNDATIONS. SO WHAT IS THIS INTERNET.
CSCI 323 – Web Development Chapter 1 - Setting the Scene We’re going to move through the first few chapters pretty quick since they are a review for most.
INTRODUCTION TO WEB DATABASE PROGRAMMING
Chapter 1 Introduction to HTML, XHTML, and CSS
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.
Internet Information ISYS 105B. What is the Internet? Comprised of network of computers Started in 1969 by U.S. Defense Dept.
HOW ACCESS TO WWW Student Name : Hussein Alkhaldi.
Lectures and Practicals Mon 8-10 SC1222 TUE SC1222 Office: SC Website: mis.csit.sci.tsu.ac.th/kanida.
1 HTML (Set Up Public Folder) Some material on these slides is taken directly from
1 Computer Communication & Networks Lecture 28 Application Layer: HTTP & WWW p Waleed Ejaz
Chapter 6 The World Wide Web. Web Pages Each page is an interactive multimedia publication It can include: text, graphics, music and videos Pages are.
BASIC UNDERSTANDING OF INTERNET AND WEB BRIDGE COURSE of INFORMATION & COMMUNICATION TECHNOLOGY Activity No. 8.
IT Introduction to Information Technology. The Internet & World Wide Web Began in 1969 with the ARPANET (Advanced Research Project Agency Network)
ITIS 1210 Introduction to Web-Based Information Systems Chapter 23 How Web Host Servers Work.
HOW WEB SERVER WORKS? By- PUSHPENDU MONDAL RAJAT CHAUHAN RAHUL YADAV RANJIT MEENA RAHUL TYAGI.
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS.
CIS 1310 – HTML & CSS 1 Introduction to the Internet.
INTERNET. BROADBAND The amount of information a connection is capable of carrying. Measured in bits per second.
HTML ~ Web Design.
Objective Understand concepts used to web-based digital media. Course Weight : 5%
IP BROS Presentation by: Amen Ahmed. Mario and Luigi are here to help us find our way through the internet. Mario will act as our browser and Luigi will.
1 Welcome to CSC 301 Web Programming Charles Frank.
Session I Chapter 1 - Introduction to Web Development
Web Design (1) Terminology. Coding ‘languages’ (1) HTML - Hypertext Markup Language - describes the content of a web page CSS - Cascading Style Sheets.
Overview Web Session 3 Matakuliah: Web Database Tahun: 2008.
The Web and Web Services Jim Graham NR 621 Spring 2009.
ECEN “Internet Protocols and Modeling”, Spring 2012 Course Materials: Papers, Reference Texts: Bertsekas/Gallager, Stuber, Stallings, etc Class.
World Wide Web “WWW”, "Web" or "W3". World Wide Web “WWW”, "Web" or "W3"
1 WWW. 2 World Wide Web Major application protocol used on the Internet Simple interface Two concepts –Point –Click.
Session 1 Chapter 1 - Introduction to Web Development ITI 133: HTML5 Desktop and Mobile Level I
HTML Concepts and Techniques Fifth Edition Chapter 1 Introduction to HTML.
Chapter 1 Introduction to HTML, XHTML, and CSS HTML5 & CSS 7 th Edition.
JavaScript and Ajax (Internet Background) Week 1 Web site:
Your final site CSS WP Hand- code, using TextEdit, TextWrangler, Dreamweaver or any other wysiwyg editor. Site doesn’t require to be hosted Deliver all.
The Internet What is the Internet? The Internet is a lot of computers over the whole world connected together so that they can share information. It.
Overview Web Technologies Computing Science Thompson Rivers University.
Uniform Resource Locator URL protocol URL host Path to file Every single website on the Internet has its own unique.
The Internet Salihu Ibrahim Dasuki (PhD) CSC102 INTRODUCTION TO COMPUTER SCIENCE.
Website Design and Construction Services and Standards.
Web Page Design The Basics. The Web Page A document (file) created using the HTML scripting language. A document (file) created using the HTML scripting.
Computer Basics Introduction CIS 109 Columbia College.
CIS 1203 Web Technologies Introduction to the Internet and the WWW.
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.
4.01 How Web Pages Work.
Web Technologies Computing Science Thompson Rivers University
JavaScript and Ajax (Internet Background)
Chapter 1 Introduction to HTML.
CNIT 131 Internet Basics & Beginning HTML
Introduction to Computers
Some bits on how it works
Some Common Terms The Internet is a network of computers spanning the globe. It is also called the World Wide Web. World Wide Web It is a collection of.
Web page a hypertext document connected to the World Wide Web.
HTML5 Level I Session I Chapter 1 - Introduction to Web Development
Browser Engine How it works…..
Research Lesson 1 URLs & Hyperlinks How to access the World Wide Web.
Research Lesson 1 URLs & Hyperlinks How to access the World Wide Web.
Introduction to World Wide Web
BOF #1 – Fundamentals of the Web
Web Technologies Computing Science Thompson Rivers University
4.01 How Web Pages Work.
The Internet and Electronic mail
Presentation transcript:

OWL Jan How Websites Work

“The Internet” vs. “The Web”?

The Internet A network of computer networks linked with a broad array of technology, which facilitate the transmission of data and exchange. Information travels via protocols (digital rules)

The Web The way of accessing all this information via the Internet using HTTP (Hypertext Transfer Protocol) protocol and tools such as browsers Hence “hyperlinks”

Client Side vs. Server Side Front End vs. Back End

Front EndClient Side Very DesignE What the user sees and interacts with in the browser Runs “The Client Side” Aka, displays things Application that runs on a user’s computer (the client being a browser, but not always) Front End == Client Side

Back EndServer Side Crunching Data Runs in the “back end” (unseen by the user) on either the computer or on the server. Runs on a Server Explicitly does not run on the users computer (so somewhere else) Back End == Server Side

So, Quick Review:

The DOM (Document Object Model) Programming interface for HTML and XML Defines structure of document Defines how document can be manipulated Document == Web page Web page =>> DOM

Browsers

Each browser renders differently Browser Compatibility is important! You will also hate it.

Webkit (Chrome & Safari)

Gecko (Firefox)

The style of this header terrifies me…

Enter in a URL 1.Browser looks up IP Address for Domain Name (IP = Internet Protocol address) (DNS = Domain Name System) Will also reference cache/stored data

Enter in a URL 2.Browser sends HTTP request to server Also contains cookies browser has for domain

Enter in a URL 3.Server Handles/GETs the request

Enter in a URL 4.Server sends back an HTTP response

Enter in a URL 5.Browser begins rendering HTML

Enter in a URL 6.Browser sends requests for objects embedded in HTML

Enter in a URL 7.Browser sends further asynchronous (AJAX) requests

(ish)