What is a Web Browser? Web Site Functionality. A client program that uses HTTP to communicate with web servers.



Similar documents
CREATING WEB PAGES USING HTML INTRODUCTION

Lesson Overview. Getting Started. The Internet WWW

How To Use Dreamweaver With Your Computer Or Your Computer (Or Your Computer) Or Your Phone Or Tablet (Or A Computer)

Internet Technologies_1. Doc. Ing. František Huňka, CSc.

Microsoft Expression Web

Learnem.com. Web Development Course Series. Quickly Learn. Web Design Using HTML. By: Siamak Sarmady

IT3503 Web Development Techniques (Optional)

Introduction to Web Technologies

ITP 101 Project 3 - Dreamweaver

Dreamweaver CS6 Basics

Creating Web Pages with Netscape/Mozilla Composer and Uploading Files with CuteFTP

Lab: Create Your Own Homepage! This exercise uses MS Expression Web as a Web Page creation tool. If you like you

WEB DEVELOPMENT IA & IB (893 & 894)

Uploading files to a web server using SSH Secure Shell 3.2.9

IT3504: Web Development Techniques (Optional)

Getting Started with KompoZer

Adobe Dreamweaver - Basic Web Page Tutorial

Saving work in the CMS Edit an existing page Create a new page Create a side bar section... 4

Web Development I & II*

Dreamweaver Tutorial #1

Joomla! 2.5.x Training Manual

Web Programming. Robert M. Dondero, Ph.D. Princeton University

Contents. Introduction Downloading the Data Files... 2

Oct 15, Internet : the vast collection of interconnected networks that all use the TCP/IP protocols

LIS 534 Lab: Internet Basics

Using Adobe Dreamweaver CS4 (10.0)

Adobe Dreamweaver CC 14 Tutorial

Making a Website with Hoolahoop

Intro to Web Development

Dreamweaver CS5. Module 1: Website Development

Lesson Plan Course Title: Web Technologies Session Title: Website Administration

Lesson 7 - Website Administration

Dreamweaver. Introduction to Editing Web Pages

CEFNS Web Hosting a Guide for CS212

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Adobe Dreamweaver Student Organizations Publishing Details Getting Started Basic Web Page Tutorial For Student Organizations at Dickinson College *

Dreamweaver: Getting Started Website Structure Why is this relevant?

Basic Web Fullerton College

Setting Up a Dreamweaver Site Definition for OIT s Web Hosting Server

Creating HTML authored webpages using a text editor

Web Developer Jr - Newbie Course

Creating Personal Web Sites Using SharePoint Designer 2007

EUROPEAN COMPUTER DRIVING LICENCE / INTERNATIONAL COMPUTER DRIVING LICENCE WEB EDITING

Publishing a Website. That Nam Tran Ton


Contents. Downloading the Data Files Centering Page Elements... 6

Setting Up Dreamweaver for FTP and Site Management

Programming exercises (Assignments)

TIME SCHEDULE OBJECTIVES

M3-R3: INTERNET AND WEB DESIGN

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1

Web Browsing Examples. How Web Browsing and HTTP Works

4.2 Understand Microsoft ASP.NET Web Application Development

Create Signature for the Scott County Family Y

Web Development. How the Web Works 3/3/2015. Clients / Server

HTML and CSS. Elliot Davies. April 10th,

Creating Your Personal Website

By : Khalid Alfalqi Department of Computer Science, Umm Al-Qura University

[D YOUVILLE COLLEGE OUCAMPUS WEB CONTENT MANAGEMENT SYSTEM TRAINING] June 11, 2014

Website Development Komodo Editor and HTML Intro

Lecture (02) Networking Model (TCP/IP) Networking Standard (OSI) (I)

Web Design and Development ACS-1809

Web Design. Links and Navigation

Basic Website Creation. General Information about Websites

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Web Design with Dreamweaver Lesson 4 Handout

Lecture 2. Internet: who talks with whom?

Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence

Creating an Intranet Website for Library & Information Services in an Organization

Web Design Specialist

Agile ICT Website Starter Guides

Network Technologies

Release: 1. ICAWEB414A Design simple web page layouts

Introduction to Web Technology. Content of the course. What is the Internet? Diana Inkpen

Using the Content Management System

How to Build a SharePoint Website

ICT 6012: Web Programming

Using Outlook Web Access

Faculty, Staff, and Student Instructions

Basic tutorial for Dreamweaver CS5

4 Understanding. Web Applications IN THIS CHAPTER. 4.1 Understand Web page development. 4.2 Understand Microsoft ASP.NET Web application development

Themes and Templates Manual FOR ADVANCED USERS

Technology/Internet Usage Workshop

Introduction to Macromedia Dreamweaver MX

How To Create A Website On Atspace.Com For Free (Free) (Free Hosting) (For Free) (Freer) ( (Web) (Femalese) (Unpaid) (

Module 6 Web Page Concept and Design: Getting a Web Page Up and Running

Dreamweaver CS5. Module 2: Website Modification

Microsoft Expression Web Quickstart Guide

How to create an template

Installing the SSH Client v3.2.2 For Microsoft Windows

Quick Guide to the Cascade Server Content Management System (CMS)

Transcription:

What is a Web Browser? Web Site Functionality April 1, 2004 A client program that uses HTTP to communicate with web servers. HTML interpreter Reads HTML, determines how to display it A Simple HTML file Browser display of the HTML file <HTML> <HEAD> <TITLE>My Jungle Home Page</TITLE> </HEAD> <BODY> The scariest jungle: Follow the map to see lions and tigers and bears. Oh, my! </BODY> </HTML>

What is a Server? WWW client/server A computer (hardware) that functions as a server mercury.cs.uml.edu is a server computer A program (software) that functions as a server apache is a web server program! The word server is used to refer to both. HTTP HTTP Network Characteristics HyperText Transmission Protocol Used for communications between web browser and web server programs. Clients send requests to the server. Servers send responses to the client.! The server is a slave in this interaction, it does not initiate, it responds. HTTP runs over TCP/IP. TCP/IP determines the low-level format of the communication, e.g. packets. HTTP defines logical formats of requests and responses. HTTP is connection oriented. Each request/response pair is complete unto itself.

HTTP request/response What s a protocol? a human protocol and a computer network protocol: Most common request is GET file.html. Server responds with contents of file.html. If the server cannot satisfy the request, you see an error message in the browser. Typically: The page cannot be found or, in case of images, a box with an X in it & perhaps a text descriptor of the image Hi Hi Got the time? 2:00 time TCP connection request TCP connection accept reply Get http://www.cs.uml.edu/index.html <file> Web Server Popularity Web Site Setup Each page is an html file. No. of Sites Percent Apache 11,699,238 66.04 Microsoft 4,283,894 24.18 iplanet 278,999 1.57 Zeus 236,948 1.34 source: netcraft.com, December 2002 Your web site on cs.uml.edu is in a directory named public_html.! My site is in ~tcostell/public_html The home page of your site is named : index.html. If you browse to the site name with no filename specified, index.html will be served. If I enter http://www.cs.uml.edu/~tcostell/image002.gif, then is displayed

Debugging a Web Page Mozilla Composer 1. Get everything working locally first. Use the My Documents directory on your computer to hold your local files. 2. Copy files from your PC to the Server. 3. Test your site on the server. Be sure to use your Internet URL: http://www.cs.uml.edu/~myname Lab instructions will be based on Mozilla Composer. Mozilla Composer is free and supports all functions required to do the labs. You may use Front Page, Dreamweaver, etc. if you know them and/or own them. My ability to answer questions on these programs is limited. Copying Files to the Server In the lab: Drag and Drop in Microsoft File Explorer. From elsewhere: A program that can copy files across the Internet. WinSCP (recommended) Secure FTP You need your Unix username and password to run these. HTML & Tags Browsers display Web pages by interpreting Hypertext Markup Language, or HTML. That's a lot of the mess you see when you look at source code. A basic Web page starts with an <HTML> tag. At the end of the page is a corresponding </HTML> closing tag (the slash means it closes the HTML element). This idea of opening and closing tags is key to understanding HTML: Everything nests. Each new set of tags must fit neatly within the previous set, like Russian matryoshka dolls, those boxes inside boxes inside boxes.

Building Web Pages Within your <HTML> and </HTML> tags, you will need to nest some other elements. Start with a set of <HEAD></HEAD> tags. Inside them, nest <TITLE> and </TITLE> tags. The text you place between the opening and closing TITLE tags will show up in the browser's title bar. Add <BODY> to Your Page Add a <BODY> tag after </HEAD> (the closing HEAD tag), and place the corresponding </BODY> tag just above the </HTML> tag. Between the <BODY> and </BODY> tags, you can type just about anything Here's how to try it: Open a new file in Notepad, or any other text editor. Type in the HTML code above. Select Save As from the File menu, and save the file as Jungle.html. Be sure to specify All Files in the Save as type: drop-down menu. html_1.html Elements and Attributes and Styles You can use HTML elements and their display characteristics to describe your content. For example, a heading code, such as <H1>, is automatically bold. Cascading Style Sheets You have the paragraphs and the big bold heading but what if you want that heading to be green, too? You can modify the way those elements appear by using cascading style sheets (CSS). Style sheets provide a way to add characteristics to an element, and they also separate the way your page looks its presentation from what's actually in it the content. If you want to make a change, you can make it one place and your change will be reflected throughout the page. You can specify many things by using styles, including fonts, sizes, colors, layout, and positioning. Style sheets also enable you to have different kinds of elements. For example, perhaps you want some paragraphs to be regular text, and some to be italic.

Lab 7 Overview Write an index.html page using Composer. Put it on the server, replacing the dummy page that is there. Write one additional page, linked to by your home page. Lab 8 & 9 will build on this basic setup.