Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Block and Inline

Each HTML element inherently possesses a default display value, which varies based on the type of element it is.The two predominant display values are block and inline.

Block-level Elements

A block-level element consistently begins on a fresh line, with browsers automatically including space (margin) before and after the element.

A block-level element invariably occupies the entire available width, extending to both the left and right edges.

Two frequently utilized block elements are: <p> for defining paragraphs in an HTML document, and <div> for delineating divisions or sections within an HTML document.

The <p> element is a block-level element.
The <div> element is a block-level element.

Example

<p>Hello World</p>
<div>Hello World</div>

Below are the block-level elements in HTML: