SlideShare a Scribd company logo
The Web and HTML
                            Design & Development Course




Tuesday, March 15, 2011
How does the Internet work?




Tuesday, March 15, 2011
The Internet
Tuesday, March 15, 2011
Web server (box)
Tuesday, March 15, 2011
IP addresses


                          74.125.224.83


Tuesday, March 15, 2011
DNS (Domain Name Service)




                          Google.com


Tuesday, March 15, 2011
Recap
                    • Web servers - Computers that serve up
                          webpages.
                    • IP (internet protocol) - Addresses of
                          web servers.
                    • DNS (domain name service) -
                          Translates a URL like Google.com to an IP
                          address.


Tuesday, March 15, 2011
How do webpages work?



Tuesday, March 15, 2011
HTML
                   (HyperText Markup Language)


                    • HyperText - Means the ability to link out.
                    • Markup - Like annotating–or “marking
                          up”– a manuscript




Tuesday, March 15, 2011
<h1>	
  This	
  is	
  a	
  headline	
  </h1>

                          <p>	
  This	
  is	
  a	
  paragraph	
  </p>

                          <p>	
  Here	
  is	
  some	
  text	
  with	
  a	
  word	
  
                          chosen	
  to	
  make	
  it	
  <strong>	
  stand	
  
                          out	
  </strong>	
  </p>




Tuesday, March 15, 2011
<h1>	
  This	
  is	
  a	
  headline	
  </h1>

                          <p>	
  This	
  is	
  a	
  paragraph	
  </p>

                          <p>	
  Here	
  is	
  some	
  text	
  with	
  a	
  word	
  
                          chosen	
  to	
  make	
  it	
  <strong>	
  stand	
  
                          out	
  </strong>	
  </p>




Tuesday, March 15, 2011
This is a headline

                          This is a paragraph

                          Here is some text with a word chosen to
                          make it stand out




Tuesday, March 15, 2011
Other type of markup languages


                    • XML (Extensible Markup Language) - A
                          generic form of markup for transferring
                          data.
                    • RSS (Really Simple Syndication) - A markup
                          language for transferring a feed of items,
                          specifically titles, posts, photos, and content.



Tuesday, March 15, 2011
RSS
       <item>
       	
  	
  	
  	
  	
  	
  <title>Example	
  entry</title>
       	
  	
  	
  	
  	
  	
  <description>Here	
  is	
  a	
  description.</description>
       	
  	
  	
  	
  	
  	
  <link>http://www.wikipedia.org/</link>
       	
  	
  	
  	
  	
  	
  <guid>unique	
  ID	
  per	
  item</guid>
       	
  	
  	
  	
  	
  	
  <pubDate>Mon,	
  06	
  Sep	
  2009	
  16:45:00	
  +0000	
  </pubDate>
       </item>




Tuesday, March 15, 2011
CSS



Tuesday, March 15, 2011
Cascading Style Sheet

                    • Describes how a webpage should look.
                    • Identifies content in a webpage by the tags,
                          or by special identifiers.
                    • You must link to a CSS document from
                          your HTML. (or include it in your page)



Tuesday, March 15, 2011
Example:
                          CSS Zen Garden


Tuesday, March 15, 2011
JavaScript



Tuesday, March 15, 2011
JavaScript
                    • Programming (scripting) language that adds
                          functionality to a webpage.
                    • For example, you can move elements
                          around, create timers, detect the browser
                          type, store cookies, and more...
                    • jQuery, AJAX, sproutcore are all libraries
                          written in JavaScript.


Tuesday, March 15, 2011
RECAP

                • HTML: The content
                • CSS: The style
                • JavaScript: The functionality
                          (plug-ins: Flash, JavaVM, Silverlight)



Tuesday, March 15, 2011
The Semantic Web
                          semantic web
                          noun
                          "Web of data" that enables machines to understand the
                          semantics, or meaning, of information on the World Wide
                          Web.


Tuesday, March 15, 2011
Other things you
                           should know


Tuesday, March 15, 2011
Dynamic / Static
                    • Static webpage: A static webpage
                          doesn’t change. It’s written in HTML, CSS
                          and JavaScript.
                    • Dynamic webpage: Where the content
                          changes depending on the user interaction.
                          Content updates, such as a blog, gmail, or
                          news site.


Tuesday, March 15, 2011
Client-side vs Server side
                    •     HTML         •   PHP (WordPress)

                    •     CSS          •   MySQL

                    •     JavaScript   •   Django, Ruby, ASP, .NET




              Your computer                  Web server

Tuesday, March 15, 2011
PHP (WordPress)
                    • The PHP code is run on the web server.
                    • When you request a webpage (visiting the
                          site) the PHP code will look up the latest
                          content in the database (MySQL) and write
                          an HTML page on the fly.
                    • End-users never see server-side scripting.
                    • PHP is free.
Tuesday, March 15, 2011
Recap
                    • Static - A webpage that never changes.
                    • Dynamic - Content is updated regularly.
                    • Client-side - Code that is run in the
                          user’s browser, is also visible to the user.
                    • Server-side - Code that is run on the
                          server, not visible to the end-user.
                    • PHP - A free server-side language. (WP)
Tuesday, March 15, 2011
Intro to HTML5



Tuesday, March 15, 2011
<tags>

                    • HTML uses tags to identify content.
                    • Every opening tag must be closed.
                    • Some tags have additional information
                          called attributes.
                    • You can only use certain tags. Learn them!

Tuesday, March 15, 2011
Open and close your tags



                          <title>	
  Here	
  is	
  a	
  title	
  </title>




Tuesday, March 15, 2011
Some tags self-close

                <br	
  />
                <hr	
  />
                <img	
  src=“some	
  image”	
  />




Tuesday, March 15, 2011
Nested Tags

                <body>
                          <h1>Here	
  is	
  a	
  headline</h1>
                          <p>Here	
  is	
  a	
  paragraph</p>
                </body>




Tuesday, March 15, 2011
Some tags have attributes

                <div>Just	
  a	
  division	
  tag</div>
                <div	
  id=“sidebar”>This	
  is	
  the	
  sidebar</div>


                <a	
  href=“http://google.com”>Google</a>




Tuesday, March 15, 2011
DOC Type

                    • First line of code needs to tell the browser
                          how to interpret the HTML.
                    • W3C (World Wide Web consortium)
                          aimed to standardize the web. Didn’t work
                          so well.
                    • We will be using HTML5.

Tuesday, March 15, 2011
<!DOCTYPE	
  html>


                             (no	
  spaces	
  before	
  it)




Tuesday, March 15, 2011
Example



Tuesday, March 15, 2011
Two Parts to HTML document


                    • The <head>          - Identifies (meta)
                          information about the webpage. User does
                          not see this on the webpage.
                    • The <body> - Is the actual content of the
                          webpage that the user sees.




Tuesday, March 15, 2011
<!DOCTYPE	
  html>
                <head	
  lang=“en”>
                   <meta	
  charset=“utf-­‐8”	
  />
                   <title>Your	
  Title</title>
                   <meta	
  name=“description”	
  content	
  =	
  “”	
  />
                   <meta	
  name=“author”	
  content=	
  “”	
  />
                   <link	
  rel=“stylesheet”	
  href=	
  “css/
                   style.css”>
                </head>




Tuesday, March 15, 2011
<body>

                          <p>Your	
  content	
  here</p>

                </body>




Tuesday, March 15, 2011
paragraph tag

                <p>This	
  is	
  a	
  paragraph.	
  


                Line	
  breaks	
  don’t	
  matter.</p>




Tuesday, March 15, 2011
strong tag

                <p>This	
  an
                <strong>important</strong>	
  
                word.</p>



Tuesday, March 15, 2011
emphasis tag

                <p>This	
  is	
  a	
  word	
  that	
  should	
  be	
  
                <em>emphasized</em>
                .</p>




Tuesday, March 15, 2011
anchor tag

                <p>Search	
  <a	
  href=“http://google.com”>Google</a>.</p>



                      <a	
  href=“http://google.com”>




Tuesday, March 15, 2011
headline tag

                <h1>This	
  is	
  the	
  largest	
  headline</h1>
                <h2>Sub	
  headline,	
  not	
  as	
  important</h2>
                <h3>Even	
  less	
  important</h3>
                <h4>Maybe	
  a	
  section	
  heading?</h4>




Tuesday, March 15, 2011
division tag

                <div>This	
  is	
  a	
  section</div>
                <div>This	
  is	
  another	
  section</div>
                <div	
  id=“container”>This	
  is	
  a	
  container</div>




Tuesday, March 15, 2011
lists: unordered list
                <ul>
                          <li>Bullet	
  point	
  item</li>
                          <li>Bullet	
  point	
  item</li>
                          <li>Bullet	
  point	
  item</li>
                </ul>



Tuesday, March 15, 2011
lists: ordered list
                <ol>
                          <li>List	
  item	
  number	
  1</li>
                          <li>List	
  item	
  number	
  2</li>
                          <li>List	
  item	
  number	
  3</li>
                </ol>



Tuesday, March 15, 2011
images

                <img	
  src=“image.jpg”	
  
                width=“450”	
  
                height=“450”	
  
                alt=“Image	
  of	
  a	
  man	
  walking”	
  />




Tuesday, March 15, 2011
New HTML5 Semantic Tags




Tuesday, March 15, 2011
header tag

                <header>
                          <h1>This	
  is	
  a	
  headline</h1>
                </header>




Tuesday, March 15, 2011
hgroup tag

                <hgroup>
                          <h1>This	
  is	
  a	
  headline</h1>
                          <h2>This	
  is	
  a	
  subhead</h2>
                </hgroup>




Tuesday, March 15, 2011
article tag

                <article>
                          <h1>This	
  is	
  a	
  headline</h1>
                          <p>Some	
  text</p>
                </article>




Tuesday, March 15, 2011
time tag

                <time>March	
  9,	
  2011</time>
                <time	
  datetime=“2011-­‐03-­‐09”>...
                <time	
  datetime=“2011-­‐03-­‐09”	
  pubdate>




Tuesday, March 15, 2011
footer tag

                <footer>
                          <p>This	
  is	
  information	
  at	
  the	
  
                          bottom.</p>
                </footer>




Tuesday, March 15, 2011
navigation tag
                <nav>
                          <ul>
                           <li>Home</li>
                           <li>About</li>
                           <li>Contact</li>
                          </ul>
                </nav>


Tuesday, March 15, 2011
Others
                <video>
                <audio>
                <aside>
                <section>
                <canvas>


      http://www.w3schools.com/html5/html5_reference.asp
Tuesday, March 15, 2011

More Related Content

What's hot (20)

PPTX
Html5
Mohammed Qasem
 
PPTX
Web development basics
Kalluri Vinay Reddy
 
PPTX
HTML 5 Fundamental
Lanh Le
 
PPTX
Introduction to Custom WordPress Themeing
Jamie Schmid
 
PPTX
Custom WordPress theme development
Tammy Hart
 
PDF
Html for beginners
Florian Letsch
 
PDF
WordPress Theme Structure
keithdevon
 
PPTX
Html lesson1 5
SabahtHussein
 
PPTX
HTML/CSS Workshop @ Searchcamp
James Mills
 
PPTX
WordPress theme development from scratch : ICT MeetUp 2013 Nepal
Chandra Prakash Thapa
 
PPTX
Html workshop 1
Lee Scott
 
PPTX
Castro Chapter 3
Jeff Byrnes
 
PPTX
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
PPTX
uptu web technology unit 2 Css
Abhishek Kesharwani
 
PPTX
Theme development essentials columbus oh word camp 2012
Joe Querin
 
PDF
Modular HTML, CSS, & JS Workshop
Shay Howe
 
PPTX
uptu web technology unit 2 Css
Abhishek Kesharwani
 
PPTX
How the Web Works Using HTML
Marlon Jamera
 
PDF
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
 
Web development basics
Kalluri Vinay Reddy
 
HTML 5 Fundamental
Lanh Le
 
Introduction to Custom WordPress Themeing
Jamie Schmid
 
Custom WordPress theme development
Tammy Hart
 
Html for beginners
Florian Letsch
 
WordPress Theme Structure
keithdevon
 
Html lesson1 5
SabahtHussein
 
HTML/CSS Workshop @ Searchcamp
James Mills
 
WordPress theme development from scratch : ICT MeetUp 2013 Nepal
Chandra Prakash Thapa
 
Html workshop 1
Lee Scott
 
Castro Chapter 3
Jeff Byrnes
 
Basics of Front End Web Dev PowerPoint
Sahil Gandhi
 
uptu web technology unit 2 Css
Abhishek Kesharwani
 
Theme development essentials columbus oh word camp 2012
Joe Querin
 
Modular HTML, CSS, & JS Workshop
Shay Howe
 
uptu web technology unit 2 Css
Abhishek Kesharwani
 
How the Web Works Using HTML
Marlon Jamera
 
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
 

Similar to Intro to HTML (20)

PDF
Introduction to Web Terminology
Nicole C. Engard
 
PDF
Mansoura University CSED & Nozom web development sprint
Al Sayed Gamal
 
PDF
Foundation of Web Application Developmnet - XHTML
Vashira Ravipanich
 
PDF
1 the web environment
Rick Ogden
 
PPTX
Web2 0-111020043404-phpapp01
pumascomm
 
PDF
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Hamdi Hmidi
 
PPTX
Basic HTML
Eric Marilag
 
PDF
Blogluck1
Drake Martinet
 
PDF
HTML5 - getting started
Ted Drake
 
PDF
Slides 1 - Internet and Web
Massimo Callisto
 
KEY
Lecture 1
barryavery
 
PPTX
Web 2.0
Dileep Pradeep
 
PPTX
Introduction to the web, WWW architecture, Fundamentals of HTML, Text form...
midhunanubhavkmea
 
PPT
HTML 5
Doncho Minkov
 
PPTX
web design
grace6497
 
PPTX
The Semantic Web #2 - XML
Myungjin Lee
 
PPT
Web technology today
Dr. Ramkumar Lakshminarayanan
 
PDF
Html5 training
James VanDyke
 
PDF
Introduction to Web Programming
Ynon Perek
 
PDF
Unit 01 (1).pdf
sayalishivarkar1
 
Introduction to Web Terminology
Nicole C. Engard
 
Mansoura University CSED & Nozom web development sprint
Al Sayed Gamal
 
Foundation of Web Application Developmnet - XHTML
Vashira Ravipanich
 
1 the web environment
Rick Ogden
 
Web2 0-111020043404-phpapp01
pumascomm
 
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Hamdi Hmidi
 
Basic HTML
Eric Marilag
 
Blogluck1
Drake Martinet
 
HTML5 - getting started
Ted Drake
 
Slides 1 - Internet and Web
Massimo Callisto
 
Lecture 1
barryavery
 
Introduction to the web, WWW architecture, Fundamentals of HTML, Text form...
midhunanubhavkmea
 
web design
grace6497
 
The Semantic Web #2 - XML
Myungjin Lee
 
Web technology today
Dr. Ramkumar Lakshminarayanan
 
Html5 training
James VanDyke
 
Introduction to Web Programming
Ynon Perek
 
Unit 01 (1).pdf
sayalishivarkar1
 
Ad
Ad

Recently uploaded (20)

PPTX
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
PDF
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PDF
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
PDF
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PDF
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
PDF
Dimensions of Societal Planning in Commonism
StefanMz
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PDF
The Different Types of Non-Experimental Research
Thelma Villaflores
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PPTX
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
PPTX
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
PDF
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
Unit 2 COMMERCIAL BANKING, Corporate banking.pptx
AnubalaSuresh1
 
ARAL-Orientation_Morning-Session_Day-11.pdf
JoelVilloso1
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
Generative AI: it's STILL not a robot (CIJ Summer 2025)
Paul Bradshaw
 
Knee Extensor Mechanism Injuries - Orthopedic Radiologic Imaging
Sean M. Fox
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
SPINA BIFIDA: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 - GLOBAL SUCCESS - CẢ NĂM - NĂM 2024 (VOCABULARY, ...
Nguyen Thanh Tu Collection
 
Dimensions of Societal Planning in Commonism
StefanMz
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
The Different Types of Non-Experimental Research
Thelma Villaflores
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PATIENT ASSIGNMENTS AND NURSING CARE RESPONSIBILITIES.pptx
PRADEEP ABOTHU
 
How to Manage Large Scrollbar in Odoo 18 POS
Celine George
 
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 

Intro to HTML

  • 1. The Web and HTML Design & Development Course Tuesday, March 15, 2011
  • 2. How does the Internet work? Tuesday, March 15, 2011
  • 4. Web server (box) Tuesday, March 15, 2011
  • 5. IP addresses 74.125.224.83 Tuesday, March 15, 2011
  • 6. DNS (Domain Name Service) Google.com Tuesday, March 15, 2011
  • 7. Recap • Web servers - Computers that serve up webpages. • IP (internet protocol) - Addresses of web servers. • DNS (domain name service) - Translates a URL like Google.com to an IP address. Tuesday, March 15, 2011
  • 8. How do webpages work? Tuesday, March 15, 2011
  • 9. HTML (HyperText Markup Language) • HyperText - Means the ability to link out. • Markup - Like annotating–or “marking up”– a manuscript Tuesday, March 15, 2011
  • 10. <h1>  This  is  a  headline  </h1> <p>  This  is  a  paragraph  </p> <p>  Here  is  some  text  with  a  word   chosen  to  make  it  <strong>  stand   out  </strong>  </p> Tuesday, March 15, 2011
  • 11. <h1>  This  is  a  headline  </h1> <p>  This  is  a  paragraph  </p> <p>  Here  is  some  text  with  a  word   chosen  to  make  it  <strong>  stand   out  </strong>  </p> Tuesday, March 15, 2011
  • 12. This is a headline This is a paragraph Here is some text with a word chosen to make it stand out Tuesday, March 15, 2011
  • 13. Other type of markup languages • XML (Extensible Markup Language) - A generic form of markup for transferring data. • RSS (Really Simple Syndication) - A markup language for transferring a feed of items, specifically titles, posts, photos, and content. Tuesday, March 15, 2011
  • 14. RSS <item>            <title>Example  entry</title>            <description>Here  is  a  description.</description>            <link>http://www.wikipedia.org/</link>            <guid>unique  ID  per  item</guid>            <pubDate>Mon,  06  Sep  2009  16:45:00  +0000  </pubDate> </item> Tuesday, March 15, 2011
  • 16. Cascading Style Sheet • Describes how a webpage should look. • Identifies content in a webpage by the tags, or by special identifiers. • You must link to a CSS document from your HTML. (or include it in your page) Tuesday, March 15, 2011
  • 17. Example: CSS Zen Garden Tuesday, March 15, 2011
  • 19. JavaScript • Programming (scripting) language that adds functionality to a webpage. • For example, you can move elements around, create timers, detect the browser type, store cookies, and more... • jQuery, AJAX, sproutcore are all libraries written in JavaScript. Tuesday, March 15, 2011
  • 20. RECAP • HTML: The content • CSS: The style • JavaScript: The functionality (plug-ins: Flash, JavaVM, Silverlight) Tuesday, March 15, 2011
  • 21. The Semantic Web semantic web noun "Web of data" that enables machines to understand the semantics, or meaning, of information on the World Wide Web. Tuesday, March 15, 2011
  • 22. Other things you should know Tuesday, March 15, 2011
  • 23. Dynamic / Static • Static webpage: A static webpage doesn’t change. It’s written in HTML, CSS and JavaScript. • Dynamic webpage: Where the content changes depending on the user interaction. Content updates, such as a blog, gmail, or news site. Tuesday, March 15, 2011
  • 24. Client-side vs Server side • HTML • PHP (WordPress) • CSS • MySQL • JavaScript • Django, Ruby, ASP, .NET Your computer Web server Tuesday, March 15, 2011
  • 25. PHP (WordPress) • The PHP code is run on the web server. • When you request a webpage (visiting the site) the PHP code will look up the latest content in the database (MySQL) and write an HTML page on the fly. • End-users never see server-side scripting. • PHP is free. Tuesday, March 15, 2011
  • 26. Recap • Static - A webpage that never changes. • Dynamic - Content is updated regularly. • Client-side - Code that is run in the user’s browser, is also visible to the user. • Server-side - Code that is run on the server, not visible to the end-user. • PHP - A free server-side language. (WP) Tuesday, March 15, 2011
  • 27. Intro to HTML5 Tuesday, March 15, 2011
  • 28. <tags> • HTML uses tags to identify content. • Every opening tag must be closed. • Some tags have additional information called attributes. • You can only use certain tags. Learn them! Tuesday, March 15, 2011
  • 29. Open and close your tags <title>  Here  is  a  title  </title> Tuesday, March 15, 2011
  • 30. Some tags self-close <br  /> <hr  /> <img  src=“some  image”  /> Tuesday, March 15, 2011
  • 31. Nested Tags <body> <h1>Here  is  a  headline</h1> <p>Here  is  a  paragraph</p> </body> Tuesday, March 15, 2011
  • 32. Some tags have attributes <div>Just  a  division  tag</div> <div  id=“sidebar”>This  is  the  sidebar</div> <a  href=“http://google.com”>Google</a> Tuesday, March 15, 2011
  • 33. DOC Type • First line of code needs to tell the browser how to interpret the HTML. • W3C (World Wide Web consortium) aimed to standardize the web. Didn’t work so well. • We will be using HTML5. Tuesday, March 15, 2011
  • 34. <!DOCTYPE  html> (no  spaces  before  it) Tuesday, March 15, 2011
  • 36. Two Parts to HTML document • The <head> - Identifies (meta) information about the webpage. User does not see this on the webpage. • The <body> - Is the actual content of the webpage that the user sees. Tuesday, March 15, 2011
  • 37. <!DOCTYPE  html> <head  lang=“en”> <meta  charset=“utf-­‐8”  /> <title>Your  Title</title> <meta  name=“description”  content  =  “”  /> <meta  name=“author”  content=  “”  /> <link  rel=“stylesheet”  href=  “css/ style.css”> </head> Tuesday, March 15, 2011
  • 38. <body> <p>Your  content  here</p> </body> Tuesday, March 15, 2011
  • 39. paragraph tag <p>This  is  a  paragraph.   Line  breaks  don’t  matter.</p> Tuesday, March 15, 2011
  • 40. strong tag <p>This  an <strong>important</strong>   word.</p> Tuesday, March 15, 2011
  • 41. emphasis tag <p>This  is  a  word  that  should  be   <em>emphasized</em> .</p> Tuesday, March 15, 2011
  • 42. anchor tag <p>Search  <a  href=“http://google.com”>Google</a>.</p> <a  href=“http://google.com”> Tuesday, March 15, 2011
  • 43. headline tag <h1>This  is  the  largest  headline</h1> <h2>Sub  headline,  not  as  important</h2> <h3>Even  less  important</h3> <h4>Maybe  a  section  heading?</h4> Tuesday, March 15, 2011
  • 44. division tag <div>This  is  a  section</div> <div>This  is  another  section</div> <div  id=“container”>This  is  a  container</div> Tuesday, March 15, 2011
  • 45. lists: unordered list <ul> <li>Bullet  point  item</li> <li>Bullet  point  item</li> <li>Bullet  point  item</li> </ul> Tuesday, March 15, 2011
  • 46. lists: ordered list <ol> <li>List  item  number  1</li> <li>List  item  number  2</li> <li>List  item  number  3</li> </ol> Tuesday, March 15, 2011
  • 47. images <img  src=“image.jpg”   width=“450”   height=“450”   alt=“Image  of  a  man  walking”  /> Tuesday, March 15, 2011
  • 48. New HTML5 Semantic Tags Tuesday, March 15, 2011
  • 49. header tag <header> <h1>This  is  a  headline</h1> </header> Tuesday, March 15, 2011
  • 50. hgroup tag <hgroup> <h1>This  is  a  headline</h1> <h2>This  is  a  subhead</h2> </hgroup> Tuesday, March 15, 2011
  • 51. article tag <article> <h1>This  is  a  headline</h1> <p>Some  text</p> </article> Tuesday, March 15, 2011
  • 52. time tag <time>March  9,  2011</time> <time  datetime=“2011-­‐03-­‐09”>... <time  datetime=“2011-­‐03-­‐09”  pubdate> Tuesday, March 15, 2011
  • 53. footer tag <footer> <p>This  is  information  at  the   bottom.</p> </footer> Tuesday, March 15, 2011
  • 54. navigation tag <nav> <ul> <li>Home</li> <li>About</li> <li>Contact</li> </ul> </nav> Tuesday, March 15, 2011
  • 55. Others <video> <audio> <aside> <section> <canvas> http://www.w3schools.com/html5/html5_reference.asp Tuesday, March 15, 2011