SlideShare uma empresa Scribd logo
1 de 31
Introduction to HTML and
CSS
Lecture 1
Who is this guy?
Lee Lundrigan
Soft ware Engineer
Blazing Cloud, Inc.

iPhone / iPad Applications in Objective-C
Javascript
HTML / CSS

Wrote a cross browser CSS framework for
iPhone, Android, Blackberry, and Windows Mobile.

Wrote a book - Pro Smartphone Cross-Platform
Development
Who are YOU?
What are we going to
talk about in this class?

XML

HTML foundation

CSS foundation

Website components
What will we not cover
in this class?
Differences between HTML and XHTML

Cross browser compatibility (including the mobile
space)

HTML 5 and CSS 3

Webpage Layouts
Todays Goals


Integrated Development Environment (IDE)

XML

HTML / XHTML

Introduction to CSS
Integrated Development
Environments
Oxygen XML Editor

  http://www.oxygenxml.com/

Aptana

  http://www.aptana.com/

TextEdit (on Mac)

TextPad (on Windows)
XML

Definition: Extensible Markup Language

XML is a simple, very flexible text format derived from
SGML

W3C sets the XML standards

Current version: 1.0
<node>
<node>
</node>
<node />
XML Cont....
Tag: A markup construct that begins with "<" and
ends with ">"

  Three different kinds of Tags

    start-tags <tag>

    end-tags </tag>

    empty-tags <tag />

Declaration: Optional information about the XML
document
       <?xml version="1.0" encoding="UTF-8"?>
XML Cont...
Attribute

  A name/value pair that exists within a start-tag
  or empty-element tag.

  <img src=”firefox.png” alt=”Firefox Icon” />

  The <img /> tag is an empty element tag with
  two attributes: src and alt.
XML Example
<?xml version="1.0" encoding="UTF-8" ?>
<ship color=”blue”>
   <captain>Mr.McGee</captain>
   <crew>
      <member>Joe</member>
      <member>Jane</member>
   </crew>
   <anchored value=”true” />
</ship>
LAB 1


Lets build a simple XML document together
<HTML>




The
markup
language
used
to
describe
web
pages.
HTML
stands
for:

Hypertext
Markup
Language
What’s a Markup
       Language?

It
is
a
set
of
symbols
and

rules
in
a
document
that

describe
its
structure
and

format.

Who decides these
          rules?
        W3C (WORLD WIDE WEB CONSORTIUM)

W3C is an international standards body for both
HTML and CSS

Formed in October 1994

Founded by Tim Berners-Lee

Has 356 members as of September 09’
HTML Tags

are special keywords surrounded by angle bracket
like <div>

Most HTML tags come in pairs like <div></div>

  Consisting of an opening and closing tag
Basic Tags
<a href=”http://www.google.com”>This is a link tag to Google.com</a>

<p>This is a paragraph tag</p>

<div>This tag represents a division in the page (called a “div”)</div>

<img src=”C:Desktopimage.png” alt=”My Image” />

<h1>This is heading 1..the largest heading</h1>

<h2>This is heading 2..the second largest heading</h2>

   Heading tags are defined h1-h6

   Heading tags work just like headings in your favorite word processor
Basic Tags Continued

<br /> is a line break and can be used inside text-
nodes.

<ul> is an unordered list. It has children known as
<li> list items. Next to each list item will be a
bullet.
       <ul>
         <li>Cat</li>
         <li>Dog</li>
         <li>Mouse</li>
       </ul>
.HTM, .HTML or .XHTML?
Document extensions

 .HTM is the same as .HTML

   .HTM is a remnant from the old days when file
   extensions were only three letters

 .XHTML is the same as a .HTML document
 except an .XHTML document is a well-formed
 XML document
Structure of an HTML
      Document
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
     <title></title>
  </head>
  <body>
  </body>
</html>
Doctype (DTD)
                   Document type declaration


 Transitional
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


 XHTML == Markup MUST be well formed XML

 Transitional == Contains all HTML elements and
 attributes, INCLUDING presentational and
 deprecated elements (like the <font> tag)
<html>

The <html> tag tells the browser that this is an
HTML document.

The html element is the outermost element in
HTML and XHTML documents. The html element
is also known as the root element.
<head>
hidden from the user

can contain:

  meta information

  stylesheet references

  scripts

  title
<body>
The content of the document

  text

  hyperlinks

  images

  tables

  lists

  etc...
Deprecated what?

Basically, try to avoid using things marked as
DEPRECATED

  While they are supported in the current version
  there is no guarantee future versions will
  continue support
Good Practice
HTML elements should be lowercase

  Why? The W3C recommends it and may require
  it in the future.

All elements should be closed.

  Close an element by either adding a forward
  slash to the start element <br /> or add a
  forward slash to the ending element like <div></
  div>
Helpful documentation	

W3schools

  http://www.w3schools.com/tags/default.asp

  http://www.w3schools.com/html/default.asp

http://en.wikipedia.org/wiki/XML

http://en.wikipedia.org/wiki/HTML
Homework

Make an HTML page using images and
paragraphs (include headers and sub headings)

Make a link on the page to a new page

READ:

  Well-formed XML:

 http://www.developer.com/net/vb/article.php/
 797861/Well-Formed-XML.htm

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

Html css java script basics All about you need
Html css java script basics All about you needHtml css java script basics All about you need
Html css java script basics All about you need
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markerters
 
Web I - 02 - XHTML Introduction
Web I - 02 - XHTML IntroductionWeb I - 02 - XHTML Introduction
Web I - 02 - XHTML Introduction
 
Hushang Gaikwad
Hushang GaikwadHushang Gaikwad
Hushang Gaikwad
 
Week 2-intro-html
Week 2-intro-htmlWeek 2-intro-html
Week 2-intro-html
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
Html,javascript & css
Html,javascript & cssHtml,javascript & css
Html,javascript & css
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
Css notes
Css notesCss notes
Css notes
 
HTML Email
HTML EmailHTML Email
HTML Email
 
Web front end development introduction to html css and javascript
Web front end development introduction to html css and javascriptWeb front end development introduction to html css and javascript
Web front end development introduction to html css and javascript
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
Html css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers workHtml css workshop, lesson 0, how browsers work
Html css workshop, lesson 0, how browsers work
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html
HtmlHtml
Html
 

Destaque

process management
 process management process management
process management
Ashish Kumar
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 

Destaque (9)

Html Ppt
Html PptHtml Ppt
Html Ppt
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html Slide Part-1
Html Slide Part-1Html Slide Part-1
Html Slide Part-1
 
process management
 process management process management
process management
 
Tesla S - Great Layman's Overview Presentation
Tesla S - Great Layman's Overview PresentationTesla S - Great Layman's Overview Presentation
Tesla S - Great Layman's Overview Presentation
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Accessibility & Compatibility
Accessibility & CompatibilityAccessibility & Compatibility
Accessibility & Compatibility
 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
 
Web Security
Web SecurityWeb Security
Web Security
 

Semelhante a HTML/CSS Lecture 1

Semelhante a HTML/CSS Lecture 1 (20)

HTML 5
HTML 5HTML 5
HTML 5
 
HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
 
Eye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easilyEye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easily
 
Vision academy sachinsir_9822506209_html_java_script_notes (1)
Vision academy sachinsir_9822506209_html_java_script_notes (1)Vision academy sachinsir_9822506209_html_java_script_notes (1)
Vision academy sachinsir_9822506209_html_java_script_notes (1)
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3
 
Html basics
Html basicsHtml basics
Html basics
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Uta005 lecture2
Uta005 lecture2Uta005 lecture2
Uta005 lecture2
 
HTML practical file
HTML practical fileHTML practical file
HTML practical file
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
4. html css-java script-basics
4. html css-java script-basics4. html css-java script-basics
4. html css-java script-basics
 
POLITEKNIK MALAYSIA
POLITEKNIK MALAYSIAPOLITEKNIK MALAYSIA
POLITEKNIK MALAYSIA
 
Html
HtmlHtml
Html
 
Html 5
Html 5Html 5
Html 5
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
3 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp023 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp02
 
Xml
XmlXml
Xml
 

Mais de Lee Lundrigan

Mais de Lee Lundrigan (6)

Iagc2
Iagc2Iagc2
Iagc2
 
Interactive Graphics using Javascript, HTML5 and CSS3
Interactive Graphics using Javascript, HTML5 and CSS3Interactive Graphics using Javascript, HTML5 and CSS3
Interactive Graphics using Javascript, HTML5 and CSS3
 
Lecture 2 adv
Lecture 2 advLecture 2 adv
Lecture 2 adv
 
Lecture 1 adv
Lecture 1 advLecture 1 adv
Lecture 1 adv
 
Lecture3
Lecture3Lecture3
Lecture3
 
Lecture2
Lecture2Lecture2
Lecture2
 

Último

Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Victor Rentea
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Último (20)

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 

HTML/CSS Lecture 1

  • 1. Introduction to HTML and CSS Lecture 1
  • 2. Who is this guy? Lee Lundrigan Soft ware Engineer Blazing Cloud, Inc. iPhone / iPad Applications in Objective-C Javascript HTML / CSS Wrote a cross browser CSS framework for iPhone, Android, Blackberry, and Windows Mobile. Wrote a book - Pro Smartphone Cross-Platform Development
  • 4. What are we going to talk about in this class? XML HTML foundation CSS foundation Website components
  • 5. What will we not cover in this class? Differences between HTML and XHTML Cross browser compatibility (including the mobile space) HTML 5 and CSS 3 Webpage Layouts
  • 6. Todays Goals Integrated Development Environment (IDE) XML HTML / XHTML Introduction to CSS
  • 7. Integrated Development Environments Oxygen XML Editor http://www.oxygenxml.com/ Aptana http://www.aptana.com/ TextEdit (on Mac) TextPad (on Windows)
  • 8. XML Definition: Extensible Markup Language XML is a simple, very flexible text format derived from SGML W3C sets the XML standards Current version: 1.0
  • 11. XML Cont.... Tag: A markup construct that begins with "<" and ends with ">" Three different kinds of Tags start-tags <tag> end-tags </tag> empty-tags <tag /> Declaration: Optional information about the XML document <?xml version="1.0" encoding="UTF-8"?>
  • 12. XML Cont... Attribute A name/value pair that exists within a start-tag or empty-element tag. <img src=”firefox.png” alt=”Firefox Icon” /> The <img /> tag is an empty element tag with two attributes: src and alt.
  • 13. XML Example <?xml version="1.0" encoding="UTF-8" ?> <ship color=”blue”> <captain>Mr.McGee</captain> <crew> <member>Joe</member> <member>Jane</member> </crew> <anchored value=”true” /> </ship>
  • 14. LAB 1 Lets build a simple XML document together
  • 17. What’s a Markup Language? It
is
a
set
of
symbols
and
 rules
in
a
document
that
 describe
its
structure
and
 format.

  • 18. Who decides these rules? W3C (WORLD WIDE WEB CONSORTIUM) W3C is an international standards body for both HTML and CSS Formed in October 1994 Founded by Tim Berners-Lee Has 356 members as of September 09’
  • 19. HTML Tags are special keywords surrounded by angle bracket like <div> Most HTML tags come in pairs like <div></div> Consisting of an opening and closing tag
  • 20. Basic Tags <a href=”http://www.google.com”>This is a link tag to Google.com</a> <p>This is a paragraph tag</p> <div>This tag represents a division in the page (called a “div”)</div> <img src=”C:Desktopimage.png” alt=”My Image” /> <h1>This is heading 1..the largest heading</h1> <h2>This is heading 2..the second largest heading</h2> Heading tags are defined h1-h6 Heading tags work just like headings in your favorite word processor
  • 21. Basic Tags Continued <br /> is a line break and can be used inside text- nodes. <ul> is an unordered list. It has children known as <li> list items. Next to each list item will be a bullet. <ul> <li>Cat</li> <li>Dog</li> <li>Mouse</li> </ul>
  • 22. .HTM, .HTML or .XHTML? Document extensions .HTM is the same as .HTML .HTM is a remnant from the old days when file extensions were only three letters .XHTML is the same as a .HTML document except an .XHTML document is a well-formed XML document
  • 23. Structure of an HTML Document <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> </head> <body> </body> </html>
  • 24. Doctype (DTD) Document type declaration Transitional <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> XHTML == Markup MUST be well formed XML Transitional == Contains all HTML elements and attributes, INCLUDING presentational and deprecated elements (like the <font> tag)
  • 25. <html> The <html> tag tells the browser that this is an HTML document. The html element is the outermost element in HTML and XHTML documents. The html element is also known as the root element.
  • 26. <head> hidden from the user can contain: meta information stylesheet references scripts title
  • 27. <body> The content of the document text hyperlinks images tables lists etc...
  • 28. Deprecated what? Basically, try to avoid using things marked as DEPRECATED While they are supported in the current version there is no guarantee future versions will continue support
  • 29. Good Practice HTML elements should be lowercase Why? The W3C recommends it and may require it in the future. All elements should be closed. Close an element by either adding a forward slash to the start element <br /> or add a forward slash to the ending element like <div></ div>
  • 30. Helpful documentation W3schools http://www.w3schools.com/tags/default.asp http://www.w3schools.com/html/default.asp http://en.wikipedia.org/wiki/XML http://en.wikipedia.org/wiki/HTML
  • 31. Homework Make an HTML page using images and paragraphs (include headers and sub headings) Make a link on the page to a new page READ: Well-formed XML: http://www.developer.com/net/vb/article.php/ 797861/Well-Formed-XML.htm

Notas do Editor