HTML Introduction

format_list_numberedLesson 1 of 5schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready
01

What is HTML?

HTML stands for Hyper Text Markup Language. It is the standard markup language for creating Web pages and describes the structure of a Web page.

Example

The basic HTML document skeleton.

<!DOCTYPE html>
<html>
<head>
  <title>Page Title</title>
</head>
<body>
  <h1>My First Heading</h1>
  <p>My first paragraph.</p>
</body>
</html>