New: Complete Beginner's Guide to Coding is now available in Premium
Updated: Indian Govt Exam roadmaps now include salary breakdowns & timelines
Tip: Use the Career Hub to explore all career paths in one place
Tutorials HTML HTML Introduction

HTML Introduction

HTML

HTML stands for HyperText Markup Language. It is the standard language for creating web pages.

Every website you visit — Google, YouTube, Instagram — is built with HTML at its core.

What You Will Learn

  • HTML elements and tags
  • How to structure a web page
  • Headings, paragraphs, links, images
  • Lists, tables, and forms

What is an HTML Element?

An HTML element is defined by a start tag, some content, and an end tag:

Example — HTML
<h1>Hello World</h1>
<p>This is my first web page.</p>
Result

Hello World

This is my first web page.