Introduction

HTML is the structure of the web. You write elements (tags) that describe content.

Page anatomy

Try it

          
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Intro Demo</title> </head> <body> <h1>Hello, HTML!</h1> <p>This is a minimal page.</p> </body> </html>