1 / 22

HTML

HTML. cancho. HTML. H yper T ext M arkup L anguage A set of HTML tags. HTML Tags. Angle bracket like < html > Pairs like < b > and </ b >. Web Browser. Read HTML documents and display them as web pages. HTML Document = Web Page!. . htm or .html. .exe .doc .txt

gasha
Download Presentation

HTML

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 cancho

  2. HTML HyperTextMarkup Language A set of HTML tags

  3. HTML Tags Angle bracket like <html> Pairs like <b> and </b>

  4. Web Browser Read HTML documents and display them as web pages HTML Document = Web Page!

  5. .htm or .html .exe .doc .txt .hwp .mp3 .zip … 3 letters!

  6. HTML Elements Attributes Empty elements

  7. Attributes Additional information about the elements name=“value”

  8. Attributes tooltip

  9. Basic Webpage <html> <head> <title>Title</title> </head> <body> Contents </body> </html>

  10. Basic Tags <html>: describes web page <head>: information about the page <title>: the document title <body>: page contents

  11. Headings <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3>

  12. Rules & Comments <hr/> <!– This is a comment -->

  13. Paragraphs <p> This is<br/> a paragraph<br/> with line breaks </p>

  14. Text Formatting <b>bold</b> <i>italic</i> <big>big</big> <small>small</small>

  15. Style Attribute Don’t Do <fontsize=2> <… align=“center”> <… color=“yellow”>

  16. Style Attribute Do style=“font-size:28px” sytle=“text-align:center” style=“color:yellow”

  17. Hyperlink <a href=“URL”>Link</a> <aname=“label”>content</a> <ahref=“#label”>Link</a>

  18. Images <imgsrc=“dog.gif”alt=“dog”/> succeed fail “dog”

  19. Tables

  20. Unordered Lists

  21. Ordered Lists

  22. Reference http://w3schools.com/html/

More Related