HTML Tutorial
Introduction
Learn what HTML is and why every web page starts with it.
HTML stands for HyperText Markup Language. It is the standard language used to create and structure web pages.
HTML is not a programming language. It is a markup language that uses tags to describe content such as headings, paragraphs, links, images, forms, and sections.
Browsers read HTML and use it to understand what content should appear on the page.
code
<h1>Welcome to DevBrainBox</h1>
<p>HTML is the structure of the web page.</p>