SlideShare una empresa de Scribd logo
1 de 53
Descargar para leer sin conexión
HTML THE LEAST YOU SHOULD KNOW




                                      HTML THE
                                      LEAST YOU
                                     SHOULD KNOW




                                 1
                                                   1
HTML THE LEAST YOU SHOULD KNOW




   HTML is a structured mark-up language
   and the predominant mark-up language
   for web pages




                                 2
                                           2
HTML THE LEAST YOU SHOULD KNOW




   HTML is a structured mark-up language
   and the predominant mark-up language
   for web pages




                                 2
                                           2
HTML THE LEAST YOU SHOULD KNOW




   HTML is a structured mark-up language
   and the predominant mark-up language
   for web pages

                                                      L
                                            ca ll HTM
                                  people
                      mon to see       a ll HTM
                                                  L
              t uncom         ge, or c
      It is no         langua
                 mming          .
       a  progra rogramming

                       ER
                   p
        aut horing

        HO        W EV                     er call
                                                   ed
                                  on has ev        anythin
                                                           g
                         cificati           ge, or
                  ML sp
                       e
                                 ng  langua
         No HT           rammi
                  a prog
         HTML
                    t.
          li ke tha




                                                               2
                                                                   2
HTML THE LEAST YOU SHOULD KNOW




   Basically its a text page marked up
   with HTML elements




                                   3
                                         3
HTML THE LEAST YOU SHOULD KNOW




     Basically its a text page marked up
     with HTML elements


                                                    es
                                         at describ
                                 e ter m th
                          a loos
                H TML is           e b page
         ent in           f your w
A n elem          piece o
       nd ividual
each i




                                                         3
                                                             3
HTML THE LEAST YOU SHOULD KNOW




     Basically its a text page marked up
     with HTML elements


                                                    es
                                         at describ
                                 e ter m th
                          a loos
                H TML is           e b page
         ent in           f your w
A n elem          piece o
       nd ividual
each i




                                                         3
                                                             3
HTML THE LEAST YOU SHOULD KNOW




     Basically its a text page marked up
     with HTML elements


                                                    es
                                         at describ
                                 e ter m th
                          a loos
                H TML is           e b page
         ent in           f your w
A n elem          piece o
       nd ividual
each i




                                                         3
                                                             3
HTML THE LEAST YOU SHOULD KNOW




   An HTML element consists of “tags”
   surrounded by angle brackets




                                 4
                                        4
HTML THE LEAST YOU SHOULD KNOW




   An HTML element consists of “tags”
   surrounded by angle brackets




                                 tag




                                       4
                                           4
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements




                                 5
                                      5
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements
   1.     The HTML container element




                                       5
                                           5
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements
   1.     The HTML container element



                                       content




                      opening tag                closing tag




                                                     5
                                                               5
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements




                                 6
                                      6
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements
   2.      The HTML empty element




                                    6
                                        6
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements
   2.      The HTML empty element




                          <br>      HTML




                                      6
                                           6
HTML THE LEAST YOU SHOULD KNOW




   There are two main kinds of HTML
   elements
   2.      The HTML empty element




                          <br>              HTML




                        <br />      XHTML
                                    In XHTML 1.0 all elements must
                                    be terminated even if their empty




                                                6
                                                                        6
HTML THE LEAST YOU SHOULD KNOW




  There are many different types of tags
  which can be added to elements to
  structure your page

                    <h1> He ader tag </h1>




      <p> Paragraph tag </p>



                                   7
                                             7
HTML THE LEAST YOU SHOULD KNOW




  You can now use these tags to create a
  HTML semantic structure* to your
  Document




  *Semantic structure means organisation that has meaning


                                                            8
                                                                8
HTML THE LEAST YOU SHOULD KNOW




  You can now use these tags to create a
  HTML semantic structure* to your
  Document

       <h1> Main Title </h1>
       <h2> Sub head </h2>
       <p> Paragraph text eum iriure
       dolor in hendrerit in vulputate velit
       esse molestie consequat </p>


  *Semantic structure means organisation that has meaning


                                                            8
                                                                8
HTML THE LEAST YOU SHOULD KNOW




  You can now use these tags to create a
  HTML semantic structure* to your
  Document

       <h1> Main Title </h1>
       <h2> Sub head </h2>
       <p> Paragraph text eum iriure
       dolor in hendrerit in vulputate velit
       esse molestie consequat </p>


                                                            Google loves a well structured document
  *Semantic structure means organisation that has meaning


                                                                               8
                                                                                                      8
HTML THE LEAST YOU SHOULD KNOW




  HTML semantic structure is the best way
  to ensure the greatest accessibility and
  widespread availability of web content

  Web accessibility refers to the practice of making
  websites usable by people of all abilities and
  disabilities.
  http://en.wikipedia.org/wiki/Web_accessibility
  (accessed 5th January 2010)


  http://www.queensu.ca/www/wsaguide/writing/structure.html
  (accessed 5th January 2010)

  http://www.webaim.org/techniques/semanticstructure/
  (accessed 5th January 2010)




                                                              9
                                                                  9
HTML THE LEAST YOU SHOULD KNOW




  Putting it all together
  a well structured HTML document




                                 10
                                      10
HTML THE LEAST YOU SHOULD KNOW




  Putting it all together
  a well structured HTML document

     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
      "http://www.w3.org/TR/html4/strict.dtd">
     <HTML>
      <HEAD>
        <TITLE>My first HTML document</TITLE>
      </HEAD>
      <BODY>
        <h1> Main Title </h1>
     <h2> Sub head </h2>
     <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
      </BODY>
     </HTML>




                                                                                  10
                                                                                                        10
HTML THE LEAST YOU SHOULD KNOW




  Putting it all together
  a well structured HTML document

     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
      "http://www.w3.org/TR/html4/strict.dtd">
     <HTML>
      <HEAD>
        <TITLE>My first HTML document</TITLE>
      </HEAD>
      <BODY>
        <h1> Main Title </h1>
     <h2> Sub head </h2>
     <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
      </BODY>
     </HTML>




                                                                                  10
                                                                                                        10
HTML THE LEAST YOU SHOULD KNOW




    A well structured HTML 4 document is
    composed of three parts:




                                 11
                                           11
HTML THE LEAST YOU SHOULD KNOW




    A well structured HTML 4 document is
    composed of three parts:


      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
       "http://www.w3.org/TR/html4/strict.dtd">
      <HTML>
       <HEAD>
         <TITLE>My first HTML document</TITLE>
       </HEAD>
       <BODY>
         <h1> Main Title </h1>
      <h2> Sub head </h2>
      <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
       </BODY>
      </HTML>




                                                                                  11
                                                                                                         11
HTML THE LEAST YOU SHOULD KNOW




    A well structured HTML 4 document is
    composed of three parts:

                                                                            1. a line containing HTML
                                                                            version information,
      <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                                                                            (I’ll talk about DOCTYPE later)
       "http://www.w3.org/TR/html4/strict.dtd">
      <HTML>
       <HEAD>
         <TITLE>My first HTML document</TITLE>
       </HEAD>
       <BODY>
         <h1> Main Title </h1>
      <h2> Sub head </h2>
      <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
       </BODY>
      </HTML>




                                                                                   11
                                                                                                              11
HTML THE LEAST YOU SHOULD KNOW




    A well structured HTML 4 document is
    composed of three parts:

                                                                                                  1. a line containing HTML
                                                                                                  version information,
        <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                                                                                                  (I’ll talk about DOCTYPE later)
         "http://www.w3.org/TR/html4/strict.dtd">
        <HTML>
         <HEAD>                      2. a declarative header section (delimited* by the HEAD element)
           <TITLE>My first HTML document</TITLE>
         </HEAD>
         <BODY>
           <h1> Main Title </h1>
        <h2> Sub head </h2>
        <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
         </BODY>
        </HTML>




   *A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions




                                                                                                          11
                                                                                                                                    11
HTML THE LEAST YOU SHOULD KNOW




    A well structured HTML 4 document is
    composed of three parts:

                                                                                                  1. a line containing HTML
                                                                                                  version information,
        <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                                                                                                  (I’ll talk about DOCTYPE later)
         "http://www.w3.org/TR/html4/strict.dtd">
        <HTML>
         <HEAD>                      2. a declarative header section (delimited* by the HEAD element)
           <TITLE>My first HTML document</TITLE>
         </HEAD>
         <BODY>                        3. a body, which contains the
           <h1> Main Title </h1>       document's actual content.
        <h2> Sub head </h2>
        <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p>
         </BODY>
        </HTML>




   *A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions




                                                                                                          11
                                                                                                                                    11
HTML THE LEAST YOU SHOULD KNOW




    However our well structured HTML 4
    document is a bit boring:




                                 12
                                         12
HTML THE LEAST YOU SHOULD KNOW




    However our well structured HTML 4
    document is a bit boring:




                                 12
                                         12
HTML THE LEAST YOU SHOULD KNOW




    However our well structured HTML 4
    document is a bit boring:



                          We need
                          graphics




                                     12
                                          12
HTML THE LEAST YOU SHOULD KNOW




    However our well structured HTML 4
    document is a bit boring:



                          We need
                          graphics



                                     We need
                                     interactivity



                                           12
                                                     12
HTML THE LEAST YOU SHOULD KNOW




                  graphics   = presentation




                  interactivity   = behaviour



                                         13
                                                13
HTML THE LEAST YOU SHOULD KNOW




    Presentation and behaviour are
    separate functions

    They are added to an HTML document using
    stylesheets, graphics and scripts




                                        14
                                               14
HTML THE LEAST YOU SHOULD KNOW




         Webpage


       content
                                 15
                                      15
HTML THE LEAST YOU SHOULD KNOW


       structure

            HTML




         Webpage


       content
                                 15
                                      15
HTML THE LEAST YOU SHOULD KNOW


       structure

            HTML
                                 CSS

                                 presentation


         Webpage


       content
                                       15
                                                15
HTML THE LEAST YOU SHOULD KNOW


       structure

            HTML
                                 CSS

                                 presentation


         Webpage
                                  Scripts

                                 behaviour
       content
                                       15
                                                15
HTML THE LEAST YOU SHOULD KNOW




    We have now achieved the
    separation of style from content

     Meaning our content can be available to
     •PDAs
     •Mobiles
     •People of all abilities and disabilities.
     •The future




                                                  16
                                                       16
HTML THE LEAST YOU SHOULD KNOW




                                        Audience
                                      participation
                                          time




                                 17
                                                      17
HTML THE LEAST YOU SHOULD KNOW




    Fill in the blanks



    HTML is a structured          language
    and the predominant          language
    for web pages




                                 18
                                             18
HTML THE LEAST YOU SHOULD KNOW




    Fill in the blanks



    HTML is a structured Mark-up language
    and the predominant Mark-up language
    for web pages




                                 18
                                            18
HTML THE LEAST YOU SHOULD KNOW




    What are the 2 main reasons to
    construct HTML documents using a
    semantic structure?




                                 19
                                       19
HTML THE LEAST YOU SHOULD KNOW




    What are the 2 main reasons to
    construct HTML documents using a
    semantic structure?


         Web accessibility




                                 19
                                       19
HTML THE LEAST YOU SHOULD KNOW




    What are the 2 main reasons to
    construct HTML documents using a
    semantic structure?


         Web accessibility




                                   Google and other
                                    Search engines
                                 love a well structured
                                       document




                                                 19
                                                          19
HTML THE LEAST YOU SHOULD KNOW




    Why separate structure, presentation
    and behaviour in an HTML document?




                                 20
                                           20
HTML THE LEAST YOU SHOULD KNOW




    Why separate structure, presentation
    and behaviour in an HTML document?

   •Redesign in hours instead of days or weeks




                                          20
                                                 20
HTML THE LEAST YOU SHOULD KNOW




    Why separate structure, presentation
    and behaviour in an HTML document?

   •Redesign in hours instead of days or weeks
   •Set up your site to work as well five years from now as
     it does today




                                           20
                                                             20
HTML THE LEAST YOU SHOULD KNOW




    Why separate structure, presentation
    and behaviour in an HTML document?

   •Redesign in hours instead of days or weeks
   •Set up your site to work as well five years from now as
     it does today
   •Stay on the right side of accessibility laws and
     guidelines




                                             20
                                                             20
HTML THE LEAST YOU SHOULD KNOW




    Why separate structure, presentation
    and behaviour in an HTML document?

   •Redesign in hours instead of days or weeks
   •Set up your site to work as well five years from now as
     it does today
   •Stay on the right side of accessibility laws and
     guidelines
   •Support wireless and PDA users without the hassle and
     expense of multiple versions




                                             20
                                                             20
HTML THE LEAST YOU SHOULD KNOW




    Why separate structure, presentation
    and behaviour in an HTML document?

   •Redesign in hours instead of days or weeks
   •Set up your site to work as well five years from now as
     it does today
   •Stay on the right side of accessibility laws and
     guidelines
   •Support wireless and PDA users without the hassle and
     expense of multiple versions



    From Designing with Web Standards
    by Jeffrey Zeldman



                                             20
                                                             20

Más contenido relacionado

Similar a Html Least

Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)Resty Jay Galdo
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTMLMayaLisa
 
Introdution to HTML
Introdution to HTMLIntrodution to HTML
Introdution to HTMLyashh1402
 
Xml For Dummies Chapter 4 Adding Xhtml For The Web
Xml For Dummies   Chapter 4 Adding Xhtml For The WebXml For Dummies   Chapter 4 Adding Xhtml For The Web
Xml For Dummies Chapter 4 Adding Xhtml For The Webphanleson
 
Lecture 4 - Adding XTHML for the Web
Lecture  4 - Adding XTHML for the WebLecture  4 - Adding XTHML for the Web
Lecture 4 - Adding XTHML for the Webphanleson
 
Rc064 010d Core Html 1
Rc064 010d Core Html 1Rc064 010d Core Html 1
Rc064 010d Core Html 1troopergreen
 
Web topic 2 html
Web topic 2  htmlWeb topic 2  html
Web topic 2 htmlCK Yang
 
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONSHYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONSdivyajohnisg
 
Html guide
Html guideHtml guide
Html guideDileysi
 
1 introductin to HTML
1 introductin to HTML1 introductin to HTML
1 introductin to HTMLJaved Khan
 
WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLSneha Mukherjee
 
4_Traditional html vs xhtml.ppt
4_Traditional html vs xhtml.ppt4_Traditional html vs xhtml.ppt
4_Traditional html vs xhtml.pptVARNITBHASKAR1
 
CSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxCSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxAmbika S
 

Similar a Html Least (18)

Html (hypertext markup language)
Html (hypertext markup language)Html (hypertext markup language)
Html (hypertext markup language)
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Introdution to HTML
Introdution to HTMLIntrodution to HTML
Introdution to HTML
 
Xml For Dummies Chapter 4 Adding Xhtml For The Web
Xml For Dummies   Chapter 4 Adding Xhtml For The WebXml For Dummies   Chapter 4 Adding Xhtml For The Web
Xml For Dummies Chapter 4 Adding Xhtml For The Web
 
Lecture 4 - Adding XTHML for the Web
Lecture  4 - Adding XTHML for the WebLecture  4 - Adding XTHML for the Web
Lecture 4 - Adding XTHML for the Web
 
Rc064 010d Core Html 1
Rc064 010d Core Html 1Rc064 010d Core Html 1
Rc064 010d Core Html 1
 
Web topic 2 html
Web topic 2  htmlWeb topic 2  html
Web topic 2 html
 
Basic html
Basic htmlBasic html
Basic html
 
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONSHYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
 
Handout1 intro to html
Handout1 intro to htmlHandout1 intro to html
Handout1 intro to html
 
Html vs xhtml
Html vs xhtmlHtml vs xhtml
Html vs xhtml
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Html guide
Html guideHtml guide
Html guide
 
Presentation1.pdf
Presentation1.pdfPresentation1.pdf
Presentation1.pdf
 
1 introductin to HTML
1 introductin to HTML1 introductin to HTML
1 introductin to HTML
 
WEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTMLWEB PAGE DESIGN USING HTML
WEB PAGE DESIGN USING HTML
 
4_Traditional html vs xhtml.ppt
4_Traditional html vs xhtml.ppt4_Traditional html vs xhtml.ppt
4_Traditional html vs xhtml.ppt
 
CSE-HTML-PPT.pptx
CSE-HTML-PPT.pptxCSE-HTML-PPT.pptx
CSE-HTML-PPT.pptx
 

Último

Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxbalqisyamutia
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样awasv46j
 
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...ZurliaSoop
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...nirzagarg
 
Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...gajnagarg
 
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样yhavx
 
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...Nitya salvi
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...nirzagarg
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Websitemark11275
 
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证eqaqen
 
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证ehyxf
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...instagramfab782445
 
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Nitya salvi
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证wpkuukw
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxtrose8
 
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789CristineGraceAcuyan
 
Resume all my skills and educations and achievement
Resume all my skills and educations and  achievement Resume all my skills and educations and  achievement
Resume all my skills and educations and achievement 210303105569
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxbingyichin04
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationZenSeloveres
 

Último (20)

Simple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptxSimple Conference Style Presentation by Slidesgo.pptx
Simple Conference Style Presentation by Slidesgo.pptx
 
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
一比一原版(WLU毕业证)罗瑞尔大学毕业证成绩单留信学历认证原版一模一样
 
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
Jual Obat Aborsi Bandung ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan ...
 
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
Top profile Call Girls In Sonipat [ 7014168258 ] Call Me For Genuine Models W...
 
Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...
Top profile Call Girls In fatehgarh [ 7014168258 ] Call Me For Genuine Models...
 
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
一比一原版(ANU毕业证书)澳大利亚国立大学毕业证原件一模一样
 
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
Just Call Vip call girls Kasganj Escorts ☎️8617370543 Two shot with one girl ...
 
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
Top profile Call Girls In Mau [ 7014168258 ] Call Me For Genuine Models We ar...
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
一比一定(购)西悉尼大学毕业证(WSU毕业证)成绩单学位证
 
Hackathon evaluation template_latest_uploadpdf
Hackathon evaluation template_latest_uploadpdfHackathon evaluation template_latest_uploadpdf
Hackathon evaluation template_latest_uploadpdf
 
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
怎样办理莫纳什大学毕业证(Monash毕业证书)成绩单留信认证
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
Just Call Vip call girls Fatehpur Escorts ☎️8617370543 Two shot with one girl...
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
TRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptxTRose UXPA Experience Design Concord .pptx
TRose UXPA Experience Design Concord .pptx
 
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
Q4-Trends-Networks-Module-3.pdfqquater days sheets123456789
 
Resume all my skills and educations and achievement
Resume all my skills and educations and  achievement Resume all my skills and educations and  achievement
Resume all my skills and educations and achievement
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptx
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 

Html Least

  • 1. HTML THE LEAST YOU SHOULD KNOW HTML THE LEAST YOU SHOULD KNOW 1 1
  • 2. HTML THE LEAST YOU SHOULD KNOW HTML is a structured mark-up language and the predominant mark-up language for web pages 2 2
  • 3. HTML THE LEAST YOU SHOULD KNOW HTML is a structured mark-up language and the predominant mark-up language for web pages 2 2
  • 4. HTML THE LEAST YOU SHOULD KNOW HTML is a structured mark-up language and the predominant mark-up language for web pages L ca ll HTM people mon to see a ll HTM L t uncom ge, or c It is no langua mming . a progra rogramming ER p aut horing HO W EV er call ed on has ev anythin g cificati ge, or ML sp e ng langua No HT rammi a prog HTML t. li ke tha 2 2
  • 5. HTML THE LEAST YOU SHOULD KNOW Basically its a text page marked up with HTML elements 3 3
  • 6. HTML THE LEAST YOU SHOULD KNOW Basically its a text page marked up with HTML elements es at describ e ter m th a loos H TML is e b page ent in f your w A n elem piece o nd ividual each i 3 3
  • 7. HTML THE LEAST YOU SHOULD KNOW Basically its a text page marked up with HTML elements es at describ e ter m th a loos H TML is e b page ent in f your w A n elem piece o nd ividual each i 3 3
  • 8. HTML THE LEAST YOU SHOULD KNOW Basically its a text page marked up with HTML elements es at describ e ter m th a loos H TML is e b page ent in f your w A n elem piece o nd ividual each i 3 3
  • 9. HTML THE LEAST YOU SHOULD KNOW An HTML element consists of “tags” surrounded by angle brackets 4 4
  • 10. HTML THE LEAST YOU SHOULD KNOW An HTML element consists of “tags” surrounded by angle brackets tag 4 4
  • 11. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 5 5
  • 12. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 1. The HTML container element 5 5
  • 13. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 1. The HTML container element content opening tag closing tag 5 5
  • 14. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 6 6
  • 15. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 2. The HTML empty element 6 6
  • 16. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 2. The HTML empty element <br> HTML 6 6
  • 17. HTML THE LEAST YOU SHOULD KNOW There are two main kinds of HTML elements 2. The HTML empty element <br> HTML <br /> XHTML In XHTML 1.0 all elements must be terminated even if their empty 6 6
  • 18. HTML THE LEAST YOU SHOULD KNOW There are many different types of tags which can be added to elements to structure your page <h1> He ader tag </h1> <p> Paragraph tag </p> 7 7
  • 19. HTML THE LEAST YOU SHOULD KNOW You can now use these tags to create a HTML semantic structure* to your Document *Semantic structure means organisation that has meaning 8 8
  • 20. HTML THE LEAST YOU SHOULD KNOW You can now use these tags to create a HTML semantic structure* to your Document <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> *Semantic structure means organisation that has meaning 8 8
  • 21. HTML THE LEAST YOU SHOULD KNOW You can now use these tags to create a HTML semantic structure* to your Document <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> Google loves a well structured document *Semantic structure means organisation that has meaning 8 8
  • 22. HTML THE LEAST YOU SHOULD KNOW HTML semantic structure is the best way to ensure the greatest accessibility and widespread availability of web content Web accessibility refers to the practice of making websites usable by people of all abilities and disabilities. http://en.wikipedia.org/wiki/Web_accessibility (accessed 5th January 2010) http://www.queensu.ca/www/wsaguide/writing/structure.html (accessed 5th January 2010) http://www.webaim.org/techniques/semanticstructure/ (accessed 5th January 2010) 9 9
  • 23. HTML THE LEAST YOU SHOULD KNOW Putting it all together a well structured HTML document 10 10
  • 24. HTML THE LEAST YOU SHOULD KNOW Putting it all together a well structured HTML document <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>My first HTML document</TITLE> </HEAD> <BODY> <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> </BODY> </HTML> 10 10
  • 25. HTML THE LEAST YOU SHOULD KNOW Putting it all together a well structured HTML document <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>My first HTML document</TITLE> </HEAD> <BODY> <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> </BODY> </HTML> 10 10
  • 26. HTML THE LEAST YOU SHOULD KNOW A well structured HTML 4 document is composed of three parts: 11 11
  • 27. HTML THE LEAST YOU SHOULD KNOW A well structured HTML 4 document is composed of three parts: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>My first HTML document</TITLE> </HEAD> <BODY> <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> </BODY> </HTML> 11 11
  • 28. HTML THE LEAST YOU SHOULD KNOW A well structured HTML 4 document is composed of three parts: 1. a line containing HTML version information, <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" (I’ll talk about DOCTYPE later) "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <TITLE>My first HTML document</TITLE> </HEAD> <BODY> <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> </BODY> </HTML> 11 11
  • 29. HTML THE LEAST YOU SHOULD KNOW A well structured HTML 4 document is composed of three parts: 1. a line containing HTML version information, <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" (I’ll talk about DOCTYPE later) "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> 2. a declarative header section (delimited* by the HEAD element) <TITLE>My first HTML document</TITLE> </HEAD> <BODY> <h1> Main Title </h1> <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> </BODY> </HTML> *A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions 11 11
  • 30. HTML THE LEAST YOU SHOULD KNOW A well structured HTML 4 document is composed of three parts: 1. a line containing HTML version information, <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" (I’ll talk about DOCTYPE later) "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> 2. a declarative header section (delimited* by the HEAD element) <TITLE>My first HTML document</TITLE> </HEAD> <BODY> 3. a body, which contains the <h1> Main Title </h1> document's actual content. <h2> Sub head </h2> <p> Paragraph text eum iriure dolor in hendrerit in vulputate velit esse molestie consequat </p> </BODY> </HTML> *A delimiter is a sequence of one or more characters used to specify the boundary between separate, independent regions 11 11
  • 31. HTML THE LEAST YOU SHOULD KNOW However our well structured HTML 4 document is a bit boring: 12 12
  • 32. HTML THE LEAST YOU SHOULD KNOW However our well structured HTML 4 document is a bit boring: 12 12
  • 33. HTML THE LEAST YOU SHOULD KNOW However our well structured HTML 4 document is a bit boring: We need graphics 12 12
  • 34. HTML THE LEAST YOU SHOULD KNOW However our well structured HTML 4 document is a bit boring: We need graphics We need interactivity 12 12
  • 35. HTML THE LEAST YOU SHOULD KNOW graphics = presentation interactivity = behaviour 13 13
  • 36. HTML THE LEAST YOU SHOULD KNOW Presentation and behaviour are separate functions They are added to an HTML document using stylesheets, graphics and scripts 14 14
  • 37. HTML THE LEAST YOU SHOULD KNOW Webpage content 15 15
  • 38. HTML THE LEAST YOU SHOULD KNOW structure HTML Webpage content 15 15
  • 39. HTML THE LEAST YOU SHOULD KNOW structure HTML CSS presentation Webpage content 15 15
  • 40. HTML THE LEAST YOU SHOULD KNOW structure HTML CSS presentation Webpage Scripts behaviour content 15 15
  • 41. HTML THE LEAST YOU SHOULD KNOW We have now achieved the separation of style from content Meaning our content can be available to •PDAs •Mobiles •People of all abilities and disabilities. •The future 16 16
  • 42. HTML THE LEAST YOU SHOULD KNOW Audience participation time 17 17
  • 43. HTML THE LEAST YOU SHOULD KNOW Fill in the blanks HTML is a structured language and the predominant language for web pages 18 18
  • 44. HTML THE LEAST YOU SHOULD KNOW Fill in the blanks HTML is a structured Mark-up language and the predominant Mark-up language for web pages 18 18
  • 45. HTML THE LEAST YOU SHOULD KNOW What are the 2 main reasons to construct HTML documents using a semantic structure? 19 19
  • 46. HTML THE LEAST YOU SHOULD KNOW What are the 2 main reasons to construct HTML documents using a semantic structure? Web accessibility 19 19
  • 47. HTML THE LEAST YOU SHOULD KNOW What are the 2 main reasons to construct HTML documents using a semantic structure? Web accessibility Google and other Search engines love a well structured document 19 19
  • 48. HTML THE LEAST YOU SHOULD KNOW Why separate structure, presentation and behaviour in an HTML document? 20 20
  • 49. HTML THE LEAST YOU SHOULD KNOW Why separate structure, presentation and behaviour in an HTML document? •Redesign in hours instead of days or weeks 20 20
  • 50. HTML THE LEAST YOU SHOULD KNOW Why separate structure, presentation and behaviour in an HTML document? •Redesign in hours instead of days or weeks •Set up your site to work as well five years from now as it does today 20 20
  • 51. HTML THE LEAST YOU SHOULD KNOW Why separate structure, presentation and behaviour in an HTML document? •Redesign in hours instead of days or weeks •Set up your site to work as well five years from now as it does today •Stay on the right side of accessibility laws and guidelines 20 20
  • 52. HTML THE LEAST YOU SHOULD KNOW Why separate structure, presentation and behaviour in an HTML document? •Redesign in hours instead of days or weeks •Set up your site to work as well five years from now as it does today •Stay on the right side of accessibility laws and guidelines •Support wireless and PDA users without the hassle and expense of multiple versions 20 20
  • 53. HTML THE LEAST YOU SHOULD KNOW Why separate structure, presentation and behaviour in an HTML document? •Redesign in hours instead of days or weeks •Set up your site to work as well five years from now as it does today •Stay on the right side of accessibility laws and guidelines •Support wireless and PDA users without the hassle and expense of multiple versions From Designing with Web Standards by Jeffrey Zeldman 20 20