HTML Table Tutorial for beginners. Learn how to create tables in HTML using table, tr, th, and td tags with simple student table examples.
👉 Table बनाना (Beginner)
यह HTML Table Tutorial नए छात्रों को step-by-step समझाता है कि HTML में rows और columns के रूप में data कैसे दिखाया जाता है।
🧾 Table क्या होती है?
Table का मतलब है Row और Column में Data दिखाना
जैसे – Student List, Fees Chart, Result आदि
🖥️ STEP 1: index.html खोलिए
Right Click → Open with → Notepad
✍️ STEP 2: ये Code लिखिए
(Body के अंदर)
<h2>Student Table</h2>
<table border=”1″>
<tr>
<th>Roll No</th>
<th>Name</th>
<th>Class</th>
</tr>
<tr>
<td>1</td>
<td>Rahul</td>
<td>10th</td>
</tr>
<tr>
<td>2</td>
<td>Neha</td>
<td>12th</td>
</tr>
</table>
💾 STEP 3: Save & Open
- Ctrl + S
- index.html पर Double Click
🧠 समझिए (Important)
- <table> = Table शुरू
- <tr> = Table Row
- <th> = Heading Cell
- <td> = Data Cell
- border=”1″ = Border दिखाने के लिए
✍️ छोटा Practice
एक और Row जोड़िए:
<tr>
<td>3</td>
<td>Amit</td>
<td>9th</td>
</tr>
Read More:HTML List Tutorial – Bullet & Number Lists (Lesson 05)






