Modern Front End Tech logo

modern front end tech

learn html for free

Start with the language that gives every webpage its structure.

Lesson 1

What is HTML?

HTML stands for HyperText Markup Language. It is the standard language used to structure the content of a webpage.

When you read headings, paragraphs, links, images, lists, or forms on a website, HTML is usually the layer that describes what those pieces of content are.

Core idea

HTML gives content meaning

HTML is not mainly about colors, animation, or layout. It tells the browser what each part of the page represents. A heading should be written as a heading, a paragraph as a paragraph, and a link as a link.

<h1>My First Webpage</h1>
<p>This paragraph introduces the page.</p>
<a href="https://example.com">Visit example</a>
Words to know

Hypertext and markup

HyperText

Hypertext means text that can connect to another document, page, section, or website through links.

Markup

Markup means using tags to label content. Tags help the browser understand the role of each piece of content.

Checkpoint

Remember this

HTML creates the structure of the webpage. CSS styles that structure, and JavaScript can make it interactive.

our youtube channel