DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

HTML Reference: Paragraphs

Quick reference for Paragraphs.

Read time: 1 min Words: 14
Open Playground → HTML My Progress

HTML Reference — Paragraphs

Quick summary of Paragraphs with syntax and example.

Syntax

<!doctype html> ...

Example

<!doctype html>
<html>
<head><meta charset="utf-8"><title>Hello</title></head>
<body>
  <h1>Hello HTML</h1>
  <p>This is a page.</p>
</body>
</html>