1 / 13

HTML

HTML . Hyper Text Markup Language. http://w3schools.com/. Define HTML Document. Define html document byusing <html> Example : <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html>. http://w3schools.com/. Head Tag.

mada
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 Hyper Text Markup Language http://w3schools.com/

  2. Define HTML Document Define html document byusing <html> Example : <html><head><title>Title of the document</title></head><body>The content of the document......</body></html> http://w3schools.com/

  3. Head Tag To put the Description of website such as title,scripts, styles, meta information, and more. <head><title>Title of the document</title></head> http://w3schools.com/

  4. Body tag Is website content <body> content </body> http://w3schools.com/

  5. Code structure http://w3schools.com/

  6. HTML Headings • HTML headings are defined with the <h1> to <h6> tags. <h1>This is a heading</h1> <h2>This is a heading</h2> <h3>This is a heading</h3> http://w3schools.com/

  7. HTML Paragraphs HTML paragraphs are defined with the <p> tag. <p>This is a paragraph</p> http://w3schools.com/

  8. HTML Links HTML links are defined with the <a> tag. <ahref="http://www.designdeedee.net">This is a link</a> http://w3schools.com/

  9. HTML Images HTML images are defined with the <img> tag. <imgsrc="w3schools.jpg" width="104" height="142"> http://w3schools.com/

  10. horizontal line The <hr>tag creates a horizontal line in an HTML page.The hr element can be used to separate content: <p>This is a paragraph.</p><hr><p>This is a paragraph.</p><hr><p>This is a paragraph.</p> http://w3schools.com/

  11. Comment Comment or note in html document <!-- This is a comment --> http://w3schools.com/

  12. HTML Line Breaks Use the <br> tag if you want a line break (a new line) without starting a new paragraph: <p>This is<br>a para<br>graph with line breaks</p> http://w3schools.com/

  13. HTML Text Formatting Bold <p><b>This text is bold</b></p> italic <p><i>This text is italic</i></p> subscript / superscript <p>This is<sub> subscript</sub> and <sup>superscript</sup> http://w3schools.com/

More Related