Welcome to HTML Learning!

Here’s a simple introduction to HTML:

HTML stands for HyperText Markup Language.
It is the standard language used to create and design webpages.
HTML tells the web browser how to display text, images, videos, links, and other content.

HyperText means text that links to other documents.

Markup Language means a system for marking up a document to show structure and layout (using “tags”).

A basic HTML document looks like this:

<!DOCTYPE html>
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
<h1>Welcome to My Website!</h1>
<p>This is a paragraph of text.</p>
</body>
</html>

<html>: The root element for the page.

<head>: Contains meta-information like the title.

<title>: Sets the title shown in the browser tab.

<body>: Contains everything that shows up on the page.

<h1>, <p>: Tags for heading and paragraph text.

Scroll to Top