Computer Science, asked by thekingaryan34, 1 day ago

creates a table with ________________border​

Answers

Answered by nidheshchaudhary11
1

Answer:

Wood border

Explanation:

with the help of carpanter

Answered by Itzintellectual
0

Explanation:

To create table border in HTML, the border attribute was used. But the introduction of HTML5, deprecated the border tag. Create table border using the CSS property border. Set table border as well as border for <th> and <td>.

Example::

<!DOCTYPE html>

<html>

<head>

<style>

table, th, td {

border: 1px solid black;

}

</style>

</head>

<body>

<h1>Employee Details</h1>

<table>

<tr>

<th>Name</th>

<td>Amit</td>

<td>Sachin</td>

</tr>

<tr>

<th>Age</th>

<td>27</td>

<td>34</td>

</tr>

</table>

</body>

</html>

Similar questions