Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
help plzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz?
if any know to give the coding for this question plz
HTML code to create a table of 3rows and 3 columns with appropriate border and show an image in each cell.
2 Antworten
- Anonymvor 1 Jahrzehnt
visit the link that i have given below
http://www.w3schools.com/tags/tag_table.asp
this might be very useful to you. I myself learned complete HTML from this site
- vor 1 Jahrzehnt
<html>
<head>
<title>abc</title>
</head>
<body>
<table border = "1" width = "50%">
<tr><th>Column 1</th>
<th>Column 2</th>
<th>Column</th></tr>
<tr><td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td>
<td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td>
<td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td></tr>
<tr><td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td>
<td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td>
<td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td></tr>
<tr><td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td>
<td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td>
<td><img src="thumb.jpg" alt="abc" width="90" height="90"/></td></tr>
</table></body>
</html>