Table of Contents
1. Introduction to HTML
 How theWebWorks?
 What is a Web Page?
 My First HTML Page
 BasicTags: Hyperlinks, Images, Formatting
 Headings and Paragraphs
2. HTML in Details
 The <!DOCTYPE> Declaration
 The <head> Section:Title, Meta, Script, Style
1
Table of Contents (2)
 The <body> Section
 Text Styling and FormattingTags
 Hyperlinks: <a>
 Hyperlinks and Sections
 Images: <img>
 Lists: <ol>, <ul> and <dl>
 HTML Special Characters
3. The <div> and <span> elements
2
How the Web Works?
 WWW use classical client / server architecture
 HTTP is text-based request-response protocol
3
Page request
Client running a
Web Browser
Server runningWeb
Server Software
(IIS, Apache, etc.)
Server response
HTTP
HTTP
What is a Web Page?
 Web pages are text files containing HTML
 HTML – HyperText Markup Language
 A notation for describing
 document structure (semantic markup)
 formatting (presentation markup)
 The markup tags provide information about
the page content structure
4

WEB PROGRAMMING CONCEPTS AND EXECUTION MODE.pptx

  • 1.
    Table of Contents 1.Introduction to HTML  How theWebWorks?  What is a Web Page?  My First HTML Page  BasicTags: Hyperlinks, Images, Formatting  Headings and Paragraphs 2. HTML in Details  The <!DOCTYPE> Declaration  The <head> Section:Title, Meta, Script, Style 1
  • 2.
    Table of Contents(2)  The <body> Section  Text Styling and FormattingTags  Hyperlinks: <a>  Hyperlinks and Sections  Images: <img>  Lists: <ol>, <ul> and <dl>  HTML Special Characters 3. The <div> and <span> elements 2
  • 3.
    How the WebWorks?  WWW use classical client / server architecture  HTTP is text-based request-response protocol 3 Page request Client running a Web Browser Server runningWeb Server Software (IIS, Apache, etc.) Server response HTTP HTTP
  • 4.
    What is aWeb Page?  Web pages are text files containing HTML  HTML – HyperText Markup Language  A notation for describing  document structure (semantic markup)  formatting (presentation markup)  The markup tags provide information about the page content structure 4

Editor's Notes