1 / 21

<html> <head> <title>HTML Presentation</title> </head> <body>

<html> <head> <title>HTML Presentation</title> </head> <body> <h1>HTML Presentation</h1>

bairn
Télécharger la présentation

<html> <head> <title>HTML Presentation</title> </head> <body>

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. <html> <head> <title>HTML Presentation</title> </head> <body> <h1>HTML Presentation</h1> <p>Mauris commodo lectus non felis. Proin interdum fermentum dolor. Pellentesque tincidunt neque sit amet massa. Mauris lacinia hendrerit eros. Mauris fringilla arcu. Donec in mauris et ante cursus blandit. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Pellentesque ac neque nec sapien auctor viverra. Quisque velit. Etiam cursus porttitor lorem. Suspendisse ante felis, eleifend vel, pellentesque eget, blandit ac, lacus. Nam fringilla scelerisque purus. Ut luctus ante id orci. Quisque in erat lobortis urna ultrices laoreet.</p> <ul> <li>List element #1</li> <li>List element #2</li> <li>List element #3</li> </ul> <img src=“image01.jpg” alt=“Caption”> </body> </html> HTML

  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>HTML Presentation</title> </head> <body> <h1>HTML Presentation</h1> <p>Proin nibh purus, hendrerit vitae, sodales vitae, interdum ut, pede. Proin risus nisi, varius in, lobortis vel, tincidunt sit amet, ipsum. Fusce rutrum. Ut eu risus. Sed sed dui. Quisque eu augue id mauris cursus nonummy. Vestibulum tempor. Donec dictum auctor nunc. Curabitur quis libero vel justo posuere pharetra. Integer dui dui, rutrum non, egestas vel, convallis eu, arcu. Maecenas eget orci eu ipsum euismod facilisis. Morbi egestas nulla vitae purus.</p> <ul> <li>List element #1</li> <li>List element #2</li> <li>List element #3</li> </ul> <ol> <li>One</li> <li>Two</li> <li>Three</li> <li>Four</li> <li>Five</li> </ol> <img src="earth.jpg" alt="Earth"> <p> <a href="http://www.wikipedia.org">Wikipedia</a> - Wikipedia, a great website </p> </body> </html>

  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN“ "http://www.w3.org/TR/html4/strict.dtd"> <html> </html> <head> </head> <title> HTML Presentation </title> </body> <body> Every HTML file you write will have this basic skeleton. The rest of the document goes here

  4. <p>This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags.</p> Paragraphs

  5. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN“ "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> HTML Presentation </title> </head> <body> <p>This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags.</p> </body> </html>

  6. Our page so far... This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags.

  7. Bold <b>Bold</b> Basic Formatting Italics <i>Italics</i> Underlined <u>Underlined</u>

  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN“ "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> HTML Presentation </title> </head> <body> <p>This is a <i>paragraph</i>, it’s just sample text and doesn’t mean anything, so don’t bother reading it. <b>But</b> since you’re already reading it, be sure to put <u>all your text</u> in paragraph tags.</p> <i>paragraph</i> <b>But</b> <u>all your text</u> </body> </html>

  9. Our page so far... This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags.

  10. THIS IS A SPACE “URL” (Web Address) Link Text Links http://www.nasa.gov <a <a href=“ href=“ </a> > </a> ” ”> <a href=“http://www.nasa.gov”> </a> NASA CLICK NASA

  11. <a href=“http://www.google.com”>Google</a> Google <a href=“http://www.icanhascheezburger.com”>Funny Cats</a> More Links Funny Cats <a href=“http://www.yatpay.net”>Awesome</a> Awesome

  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN“ "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> HTML Presentation </title> </head> <body> <p>This is a <i>paragraph</i>, it’s just sample text and doesn’t mean anything, so don’t bother reading it. <b>But</b> since you’re already reading it, be sure to put <u>all your text</u> in paragraph tags.</p> <p>I think that <a href=“http://www.nasa.gov”>NASA’s Site Rules</a>. </p> </body> </html>

  13. Our page so far... This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags. I think that NASA’s Site Rules.

  14. <p>This is a line of text. It has no breaks in it and just wraps.</p> <p>This is a line<br>of text.<br> It has some breaks<br> in it and <br>doesn’t just wrap.</p> This is a line of text. It has no breaks in it and just wraps. This is a line of text. It has some breaks in it and doesn’t just wrap. Breaks <br>

  15. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN“ "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> HTML Presentation </title> </head> <body> <p>This is a <i>paragraph</i>, it’s just sample text and doesn’t mean anything, so don’t bother reading it. <b>But</b> since you’re<br>already reading it, be sure to put <u>all your text</u> in paragraph tags.</p> <br> <p>I think that <a href=“http://www.nasa.gov”>NASA’s Site Rules</a>. </p> </body> </html>

  16. Our page so far... This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags. I think that NASA’s Site Rules.

  17. <img src=“ ”> <img> <img src=“shuttle.jpg” alt=“Space Shuttle”> <img src=“shuttle.jpg”> Images

  18. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN“ "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title> HTML Presentation </title> </head> <body> <p>This is a <i>paragraph</i>, it’s just sample text and doesn’t mean anything, so don’t bother reading it. <b>But</b> since you’re<br>already reading it, be sure to put <u>all your text</u> in paragraph tags.</p> <p>I think that <a href=“http://www.nasa.gov”>NASA’s Site Rules</a>.<br> </p> <img src=“shuttle.jpg” alt=“Space Shuttle”> </body> </html>

  19. Our page so far... This is a paragraph, it’s just sample text and doesn’t mean anything, so don’t bother reading it. But since you’re already reading it, be sure to put all your text in paragraph tags. I think that NASA’s Site Rules.

  20. <table border=“1”> <tr> <td>alpha</td> <td>beta</td> <td>gamma</td> </tr> <tr><td>1</td><td>2</td><td>3</td></tr> <tr><td>A</td> <td>B</td><td>C</td></tr> </table> Tables

  21. Unordered List <ul> <li>One</li> <li>Two</li> <li>Three</li> </ul> • One • Two • Three Lists Ordered List • One • Two • Three <ol> <li>One</li> <li>Two</li> <li>Three</li> </ol>

More Related