HTML Basic Tags
Here are some commonly used HTML tags demonstrated below:
यहाँ कुछ सामान्य HTML टैग्स के उदाहरण दिए गए हैं:
Example: Basic HTML Tags
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>This is a paragraph.</p>
<p><b>This is bold text.</b></p>
<p><i>This is italic text.</i></p>
</body>
</html>
Output:
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
This is a paragraph.
This is bold text.
This is italic text.
Write Your Html Code and Press Run Button