0% found this document useful (0 votes)
4 views4 pages

HTML Detailed Beginner Guide

HTML, or HyperText Markup Language, is the foundational language for creating web pages, defining their structure with elements like headings, paragraphs, images, and links. The document outlines the basic structure of an HTML file, important tags, attributes, and the use of images, links, tables, and forms. It also provides tips for learning HTML through regular practice by creating simple web pages.

Uploaded by

jjejsjeahjsh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views4 pages

HTML Detailed Beginner Guide

HTML, or HyperText Markup Language, is the foundational language for creating web pages, defining their structure with elements like headings, paragraphs, images, and links. The document outlines the basic structure of an HTML file, important tags, attributes, and the use of images, links, tables, and forms. It also provides tips for learning HTML through regular practice by creating simple web pages.

Uploaded by

jjejsjeahjsh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

HTML Complete Beginner Guide (Detail Me)

1. HTML kya hai


HTML ka full form HyperText Markup Language hota hai. Ye web page banane ki sabse basic language
hai. Internet par jo bhi website aap dekhte ho unka structure HTML se hi banta hai. HTML ka kaam
website ka structure banana hota hai jaise heading, paragraph, image, link, table, form wagairah.

2. HTML ka basic structure


Har HTML file ek basic structure follow karti hai. Is structure ke bina browser ko samajh nahi aata ki page
ko kaise display karna hai. Neeche ek simple HTML page ka structure diya gaya hai:
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>

<body>

<h1>Hello World</h1>
<p>Ye mera pehla HTML page hai</p>

</body>
</html>

Is structure me browser ko batata hai ki ye HTML5 document hai. tag pura HTML document ko wrap karta
hai. section me metadata aur title hota hai. section me wahi content hota hai jo website par dikhai deta hai.
3. Important HTML Tags
HTML me bahut saare tags hote hain jo alag-alag kaam karte hain. Kuch important tags neeche diye gaye
hain.
<h1>Heading</h1>
<p>Paragraph</p>
<a href="[Link]
<img src="[Link]">
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>

h1 se h6 tak heading ke liye use hote hain. p tag paragraph likhne ke liye hota hai. a tag link banane ke
liye use hota hai. img tag image show karne ke liye use hota hai. ul aur li list banane ke liye use hote hain.

4. HTML Attributes
HTML tags ke andar attributes bhi use hote hain. Attributes extra information dete hain. Jaise link me href
attribute batata hai ki link kis page par jayega.
<a href="[Link]
<img src="[Link]" width="200" height="200">
5. HTML me Images aur Links
Website ko interesting banane ke liye images aur links bahut important hote hain. Images ko img tag se
add kiya jata hai aur links ko a tag se banaya jata hai.
<img src="[Link]" alt="My Photo">

<a href="[Link]
YouTube Open Kare
</a>

alt attribute image ke description ke liye use hota hai. Agar image load nahi hoti to alt text display hota hai.

6. HTML Tables
Tables ka use data ko rows aur columns me show karne ke liye hota hai.
<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
</tr>

<tr>
<td>Rahul</td>
<td>20</td>
</tr>
</table>
7. HTML Forms
Forms ka use user se information lene ke liye hota hai jaise login, signup, contact form.
<form>
Name: <input type="text"><br><br>
Email: <input type="email"><br><br>

<input type="submit" value="Submit">


</form>

Forms website development ka bahut important part hote hain. Inhe JavaScript aur backend languages ke
saath use karke data process kiya jata hai.

8. HTML Seekhne ke Tips


HTML seekhne ka best tarika practice hai. Roz ek chhota webpage banao. Jaise ek personal profile page,
ek simple blog page ya ek contact page. Jitna zyada practice karoge utna jaldi HTML samajh aayega.

You might also like