HTML Fundamentals

FutureVerse Learning

Course Progress 0%
What is HTML?
HTML Fundamentals Module 1
LESSON 01

What is HTML?

Understand the foundation of every web page.

01
STEP 01

Learn

What is HTML?

HTML stands for HyperText Markup Language. It is the standard markup language used to create and structure web pages.

HTML tells the browser what different pieces of content are, such as headings, paragraphs, links, images and other elements.

What is HTML?

HTML का full form HyperText Markup Language है। यह web pages को create और structure करने के लिए use होने वाली standard markup language है।

HTML browser को बताता है कि page पर मौजूद content क्या है—जैसे heading, paragraph, link, image आदि।

STEP 02

Example

Here is a simple HTML document:

नीचे एक simple HTML document दिया गया है:

index.html
<!DOCTYPE html>
<html>
<head>
    <title>My First Page</title>
</head>

<body>
    <h1>Hello World</h1>
    <p>This is my first web page.</p>
</body>
</html>
STEP 03

Practice

Test your understanding with these practice questions.

नीचे दिए गए questions से अपनी understanding check करें।

01

What does HTML stand for?

STEP 04

Complete

Once you understand this lesson, mark it as complete and continue to the next lesson.

जब आपको यह lesson अच्छी तरह समझ आ जाए, तो इसे complete mark करके अगले lesson पर जाएँ।

01 / 23
Course Progress 0%