HTML (HyperText Markup Language) is the standard language for creating and structuring web pages using tags and elements. It defines how content like text, images, and links appear in a browser.
- It is a markup language, not a programming language.
- This means it annotates text to define how it is structured and displayed by web browsers.
- It is a static language, meaning it does not inherently provide interactive features but can be combined with CSS for styling and JavaScript for interactivity.
<!DOCTYPE html>
<html>
<head>
<title>My First Webpage</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is my first paragraph of text!</p>
</body>
</html>
The output shows how the HTML content (heading and paragraph) is displayed in the browser:

Working of HTML: Understand Step-by-Step
Here, we’ll learn how a simple HTML file is written, saved, opened in a browser, rendered, and finally displayed on the screen along with how CSS and JavaScript enhance it.
Also Check