typa a html programe to output this result using text css
Attachments:
Answers
Answered by
2
Html:
<html>
<head>
<link rel="stylesheet" href="**stylesheet.css">
</head>
<body>
<center>
<table>
<tr>
<th>AC No</th>
<th>Type</th>
<th>Photo</th>
</tr>
<tr>
<td>SB02</td>
<td>R</td>
<td><img src=" your image location**" alt="a.png"></td>
</tr>
<tr>
<td>SB01</td>
<td>S</td>
<td><img src=" your image location**" alt="l.png"></td>
</tr>
<table>
<p>Customer</p>
</center>
</body>
</html>
CSS:
table,th,td {
border: 1px solid black;
}
**:
where ever stars are there type the file location there.
Similar questions