Internet Programming - PowerPoint PPT Presentation

1 / 13
About This Presentation
Title:

Internet Programming

Description:

Internet Programming. Lecture 1. Course Outline. Introduction to HTML, XHTML. Web Site Management ... Web based Forms and CGI Programs. Client-Side Programming ... – PowerPoint PPT presentation

Number of Views:19
Avg rating:3.0/5.0
Slides: 14
Provided by: alexain
Category:

less

Transcript and Presenter's Notes

Title: Internet Programming


1
Internet Programming
  • Lecture 1

2
Course Outline
  • Introduction to HTML, XHTML
  • Web Site Management
  • Introduction to Web Graphics
  • Tables
  • Webbased Forms and CGI Programs
  • Client-Side Programming
  • Server-side Scripting via ASP
  • Cascading Style Sheets
  • The Web as a Database Platform

3
A Brief History of Software Development
  • 60s Mainframes. COBOL FORTRAN
  • 70s Structured Programming.Database.
  • 80s PC, EUC, Smalltalk, C, SSADM
  • 90s Internet, CASE, OO Database, Java

4
The Goals of Software Development
  • Correct
  • Reliable
  • Robust
  • Extensible and Maintainable
  • Reusable
  • Efficient
  • Portable
  • Delivered on Time
  • Delivered on Budget

5
SDLC Main Stages
6
What is HTML?
  • Hypertext Markup Language (HTML) is the text
    markup language currently used on the World Wide
    Web
  • It tells Web browsers how to structure and
    display Web pages

7
What is a Web Page?
  • A text document containing information you wish
    to publish
  • It has embedded instructions which determine how
    the document should be structured or presented
  • They take the form of a start tag and possibly an
    end tag

8
What are tags?
  •  In most cases, the tags come in pairs, each
    contained between angled brackets lt gt
  • An example of ltbgtbold lt/bgt text.
  • The ltbgt tag informs the browser where bold text
    will begin the lt/bgt tag indicates where this
    formatting ends. The result will look like this 
  • An example of bold text.

9
Some other tags
10
A Basic Web Page
  • lthtmlgt
  • ltheadgt
  • lttitlegtThe title of the pagelt/titlegt
  • lt/headgt
  • ltbodygt
  • Heres where the contents of the page are laid
    out.
  • lt/bodygt
  • lt/htmlgt

11
Naming Web Pages
  • An HTML file is just a plain text document with
    its file extension changed.
  • To make one all you need is a basic text editor
    (like Notepad).
  • When you come to save the file its name should
    take the form FILENAME.HTML instead of
    FILENAME.TXT.
  • Each page within your site should be created as a
    separate text document.

12
Testing Web Pages
  • Launch your browser
  • Go to the File menu, select Open (or Open File if
    youre using Netscape Navigator) and locate the
    document that youve just created.
  • Alternatively (double) click on the file icon in
    Windows

13
End of Lecture 1
Write a Comment
User Comments (0)
About PowerShow.com