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

HTML Reference: HTML Introduction

Quick reference for HTML Introduction.

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

HTML Reference — HTML Introduction

Quick summary of HTML Introduction 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>