HTML Basics | Exploring Basic HTML Examples: Introduction to HTML Document Structure | URDU | HINDI



HTML Basics | Exploring Basic HTML Examples: Introduction to HTML Document Structure | URDU | HINDI

HTML Basics | Exploring Basic HTML Examples: Introduction to HTML Document Structure | URDU | HINDI

welcome to a foundational chapter where we introduce you to essential HTML concepts. As we go along, you might encounter unfamiliar tags – don’t worry, this is just the start of your HTML journey.

HTML Documents:
Every HTML document begins with a declaration specifying its type. It includes a html section that contains the content of the page, enclosed within body tags.

Example:

sql
Copy code
Declaration: Specify document type
HTML Content: Start with html and end with /html
Visible Content: Between body and /body
The Declaration:
The declaration, often referred to as DOCTYPE, guides browsers in rendering the page correctly. It’s case-insensitive and placed at the document’s top, before HTML tags.

HTML Headings:
HTML headings are created using tags ranging from h1 (most significant) to h6 (least significant).

Example:

vbnet
Copy code
h1: This is heading 1
h2: This is heading 2
h3: This is heading 3
HTML Paragraphs:
Paragraphs are enclosed within p tags.

Example:

vbnet
Copy code
p: This is a paragraph.
p: This is another paragraph.
HTML Links:
Links are formed using the a tag.

Example:

vbnet
Copy code
a: This is a link, href=”https://www.w3schools.com”
Throughout this exploration, we’ll gradually uncover more HTML elements and their roles in crafting web content.”

HTML Documents, Declaration, HTML Content, Visible Content, DOCTYPE, HTML Headings, h1, h2, h3, HTML Paragraphs, p, HTML Links, a, href, Web Content Creation

Comments are closed.