HTML TUTORIALS-
HTML Tables Tag –
Introduction-
HTML Tables Tag -
- HTML table is used to display data in rows and columns similar to a spreadsheet.tables are useful for organizing data into rows and columns, making it easier for users to read and understand information. This is specially helpful when working with large amounts of data such as financial reports, schedules, product listings, or any information that benefits from a grid layout....
-)📋 What is an HTML Table?:-
<table>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td>Row 1, Cell 1</td>
<td>Row 1, Cell 2</td>
</tr>
<tr>
<td>Row 2, Cell 1</td>
<td>Row 2, Cell 2</td>
</tr>
</table>
<!DOCTYPE html>
<html lang="hi">
<head>
<meta charset="UTF-8">
<title>IPL 2025 टाइम टेबल और मैच</title>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
h1 {
color: darkblue;
}
p {
font-weight: bold;
}
</style>
</head>
<body>
<h1>-) टाइम टेबल और मैच -</h1>
<p><b>-) नीचे आईपीएल 2025 के मैचों की पूरी सूची और उनके स्थान दिए गए हैं:-</b></p>
<table>
<tr>
<th>दिनांक</th>
<th>मैच</th>
<th>समय</th>
<th>स्थान</th>
</tr>
<tr>
<td>22 मार्च</td>
<td>KKR vs RCB</td>
<td>7:30 PM</td>
<td>कोलकाता</td>
</tr>
<tr>
<td>23 मार्च</td>
<td>SRH vs RR</td>
<td>3:30 PM</td>
<td>हैदराबाद</td>
</tr>
<tr>
<td>23 मार्च</td>
<td>SRH vs RR</td>
<td>7:30 PM</td>
<td>चेन्नई</td>
</tr>
<tr>
<td>24 मार्च</td>
<td>DC vs LSG</td>
<td>7:30 PM</td>
<td>विजाग</td>
</tr>
<tr>
<td>25 मार्च</td>
<td>GT vs PBKS</td>
<td>7:30 PM</td>
<td>अहमदाबाद</td>
</tr>
<tr>
<td>26 मार्च</td>
<td>RR vs KKR</td>
<td>7:30 PM</td>
<td>गुवाहाटी</td>
</tr>
</table>
</body>
</html>
-) नीचे (IPL)आईपीएल 2025 के मैचों की पूरी सूची और उनके स्थान दिए गए हैं:-
दिनांक | मैच | समय | स्थान |
---|---|---|---|
22 मार्च | KKR vs RCB | 7:30 PM | कोलकाता |
23 मार्च | SRH vs RR | 3:30 PM | हैदराबाद |
23 मार्च | SRH vs RR | 7:30 PM | चेन्नई |
24 मार्च | DC vs LSG | 7:30 PM | विजाग |
25 मार्च | GT vs PBKS | 7:30 PM | अहमदाबाद |
26 मार्च | RR vs KKR | 7:30 PM | गुवाहाटी |