1 / 7

Learn Advanced and Basic HTML - Lesson 2

With HTML you can create your own Website. This tutorial teaches you everything about HTML. For full HTML course visit our website www.training-n-development.com

Download Presentation

Learn Advanced and Basic HTML - Lesson 2

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. Learn HTML BasicsLesson No : 02 Publisher : Attitude Academy

  2. LESSON NO :- 02 HTML

  3. HTML Paragraphs HTML documents are divided into paragraphs. The HTML <p> element defines a paragraph. ... Note, Browsers automatically add some white space before and after a paragraph. The HTML <p> element defines a paragraph. <!DOCTYPE html><html><head><title>Page Title</title></head> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html>

  4. HTML Block Elements Block-level Elements Every HTML element has a default display value depending on what type of element it is. A Block-level element always starts on a new line and takes up the full width available (stretches out to the left and right as far as it can). The <div> element is a block-level element. • Examples of block-level elements: • <div> • <h1> - <h6> • <p> • <form>

  5. HTML Inline Elements • Inline Elements • The <span> element is an inline element that is often used as a container for some text. An inline element does not start on a new line and only takes up as much width as necessary. • Examples of inline elements: • <span> • <a> • <img> The <span> element is a block-level element. HTML Grouping Tags

  6. PRACTICAL IMPLEMENTATION

  7. Visit Us : Attitude Academy

More Related