CGS – 4854 Summer 2012 Web Site Construction and Management Instructor: Francisco R. Ortega Date: May 5 th,2012.

Slides:



Advertisements
Similar presentations
Enabling Secure Internet Access with ISA Server
Advertisements

Web Development & Design Foundations with XHTML
A guide to HTML. Slide 1 HTML: Hypertext Markup Language Pull down View, then Source, to see the HTML code. Slide 1.
Chapter 16 The World Wide Web.
HTML & XHTML Web Publishing. What is HTML? HTML- Hypertext Markup Language ▫Start with text on your page & add special tags ▫These specific tags produce.
CIS101 Introduction to Computing Week 05. Agenda Your questions Exam next week - Excel Introduction to the Internet & HTML Online HTML Resources Using.
 2002 Prentice Hall. All rights reserved. 1 Chapter 6 – Introduction to the Common Gateway Interface (CGI) Outline 6.1 Introduction 6.2 Client and Web.
23-Jun-15 HTML. 2 Web pages are HTML HTML stands for HyperText Markup Language Web pages are plain text files, written in HTML Browsers display web pages.
IST 221 Internet Concepts and Applications Internet, WWW and HTML 1.
WWW and Internet The Internet Creation of the Web Languages for document description Active web pages.
Creating your website Using Plain HTML. What is HTML? ► Web pages are authored in HyperText Markup Language (HTML) ► Plain text is marked up with tags,
Chapter 14 Introduction to HTML
CIS101 Introduction to Computing Week 06. Agenda Your questions Excel Exam during second hour Our status after the snow day Introduction to the Internet.
Chapter 9 Collecting Data with Forms. A form on a web page consists of form objects such as text boxes or radio buttons into which users type information.
Chapter 12 Creating and Using XML Documents HTML5 AND CSS Seventh Edition.
Computer Concepts 2014 Chapter 7 The Web and .
Chapter 9 Using Perl for CGI Programming. Computation is required to support sophisticated web applications Computation can be done by the server or the.
Chapter 16 The World Wide Web. 2 Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Write basic HTML.
_______________________________________________________________________________________________________________ E-Commerce: Fundamentals and Applications1.
Creating a Basic Web Page
1 HTML and CGI Scripting CSC8304 – Computing Environments for Bioinformatics - Lecture 10.
Chapter 16 The World Wide Web Chapter Goals Compare and contrast the Internet and the World Wide Web Describe general Web processing Describe several.
Chapter 16 The World Wide Web. 2 The Web An infrastructure of information combined and the network software used to access it Web page A document that.
1 HTML References: A HTML Tutorial: /HTMLPrimer.html
Chapter 17 - Deploying Java Applications on the Web1 Chapter 17 Deploying Java Applications on the Web.
Essential Tags Web Design – Sec 3-3 Part or all of this lesson was adapted from the University of Washington’s “Web Design & Development I” Course materials.
CS134 Web Design & Development Creating a Basic Web Page Mehmud Abliz.
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
Html Basic Codes Week Two. Start Your Text Editor Windows use 'Notepad’ Macintosh use 'Simple Text'
USING PERL FOR CGI PROGRAMMING
CGS – 4854 Summer 2012 Web Site Construction and Management Instructor: Francisco R. Ortega Chapter 2.
Web Programming : Building Internet Applications Chris Bates CSE :
Chapter 8 Cookies And Security JavaScript, Third Edition.
Lesson 2: Basic HTML Code Basic HTML Code. HTML is an acronym for Hypertext Markup Language. Internet browsers translate the HTML code into texts and.
IS1811 Multimedia Development for Internet Applications Lecture 4: Introduction to HTML Rob Gleasure
1 John Magee 9 November 2012 CS120 Lecture 17: The World Wide Web and HTML Web Publishing.
Chapter 9: Perl and CGI Programming CGI Programming Acknowledgement: Some materials are taken from Teach Yourself CGI Programming with PERL 5 in a Week.
HTML: Hyptertext Markup Language Doman’s Sections.
HTML Basics BCIS 3680 Enterprise Programming. Web Client/Server Architecture 2  Your browser (the client) requests a Web page from a remote computer.
Web Development & Design Foundations with XHTML Chapter 2 HTML/XHTML Basics.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
Lecture: Web Design Assis. Prof. Freshta Hanif Ehsan Faculty of Computer Science Kabul Polytechnic University Spring Semester
1 WWW. 2 World Wide Web Major application protocol used on the Internet Simple interface Two concepts –Point –Click.
Operating Systems Lesson 12. HTTP vs HTML HTML: hypertext markup language ◦ Definitions of tags that are added to Web documents to control their appearance.
COP 3813 Intro to Internet Computing Prof. Roy Levow Lecture 2.
Module: Software Engineering of Web Applications Chapter 2: Technologies 1.
27.1 Chapter 27 WWW and HTTP Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
Internet Applications (Cont’d) Basic Internet Applications – World Wide Web (WWW) Browser Architecture Static Documents Dynamic Documents Active Documents.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
1 2/16/05CS120 The Information Era Chapter 4 Basic Web Page Construction TOPICS: Intro to HTML and Basic Web Page Design.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
1 ITEC 4830 Graphics Design Chapter 1 Dreamweaver MX 2004 Basics.
CIS 228 The Internet Day 2, 9/1/11 Hypertext. The Course Instructor: Bowen Alpern Office hour: GI 137-I, 4-5pm Tu.
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)
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Glencoe Introduction to Web Design Chapter 4 XHTML Basics 1 Review Do you remember the vocabulary terms from this chapter? Use the following slides to.
National College of Science & Information Technology.
HTML CS 4640 Programming Languages for Web Applications
Web Basics: HTML/CSS/JavaScript What are they?
4.01 How Web Pages Work.
How to Write Web Forms By Mimi Opkins.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
IS333D: MULTI-TIER APPLICATION DEVELOPMENT
Forms, cont’d.
Web Programming and Design
HTML CS 4640 Programming Languages for Web Applications
Presentation transcript:

CGS – 4854 Summer 2012 Web Site Construction and Management Instructor: Francisco R. Ortega Date: May 5 th,2012

“The most profound technologies are those that disappear” The computer for the 21st century Mark Weiser, 1999 Father of ubiquitous computing

Today’s Lecture – 05/05/12 We will review Java We will cover part of Chapter 1 Remember I have office hours Today!

Protocol What is a protocol? – an agreement between states.(reference.com) – Other definitions?

HTTP Protocol

Request Format Type of request Request Header Blank Line indicates end of request headers – In a POST request, there can be additional information sent after the blank line

Response Format Status Code Response Header Blank Line indicates end of respose headers

Mime Type Multipurpose Internet Mail Extensions – Use to decode type of content by browser – Use to specify formatting of non-ASCII characters – Most Common: MIME type/html

Mime Type Multipurpose Internet Mail Extensions – Use to decode type of content by browser – Use to specify formatting of non-ASCII characters – Most Common: MIME type/html

Markup Language Method of annotating text in a descriptive way for presentation and/or processing. Taken from “marking up” a manuscript.

Markup Language Examples HTML XML TeX

HTML Tags Singleton – A single tag that has no corresponding closing tag Paired – A tag with a starting a closing tag. The closing tag is denoted by a leading ‘/’

HTML Tags ( Examples ) Singleton: – Paired: – Hello World – Great Class! – BYE

HTML Validation (HTML 5) Simple Page Hello World

Layout vs Style Either placed in the html file or a css file. This books will used HTML 5 – Therefore all pages used strict HTML For example, center, font and others are not allowed.

Questions! Word Wrap and White Space Line Breaks What is the HT in HTML? Absolute vs Relative Reference? What is a URL?

Forms First Form This is a simple HTML page that has a form in it. Hobby: <input type="text" name="hobby" value=""> <input type="submit" name="confirmButton" value="Confirm">

Query Strings A query string is appended to a URL and carries data that is being passed to a web application It takes the format name=value The ‘?’ character is used to separate the URL from the query string. It does not form a part of the query string Pairs are separated with the ‘&’ character Example: A&State=FL

More about forms and JSP We will cover the rest of chapter 1 in the video lecture. The Video lecture for Chapter 1 will be posted either Saturday or Sunday. I will be posting a Java review as well. Finished Chapter 1 and read Section 2.1 for next Class We will have a quiz next week (Chapter 1) plus one Java question (from what we covered today.)

Questions Any Questions