Computer Science, asked by diya8410, 9 months ago

Write the programming to create a web page with tables in HTML

Answers

Answered by sushiladevi4418
2

Answer:

Web page creation with table by using HTML.

Explanation:

<!DOCTYPE html>

<html>

<body>

<h2>Basic HTML Table</h2>

<table style="width:100%">

 <tr>

   <th> Name </th>

   <th> Salary </th>  

   <th> Age </th>

 </tr>

 <tr>

   <td> Nikhil Sen </td>

   <td>40000</td>

   <td>32</td>

 </tr>

 <tr>

   <td>Rahul Singh</td>

   <td>50000</td>

   <td>46</td>

 </tr>

 <tr>

   <td>Neha Mehta </td>

   <td>55000</td>

   <td>45</td>

 </tr>

</table>

</body>

</html>

Similar questions