table border css
table, th, td {
border: 1px solid black;
}
html create a table
<html>
<head>
<title>Working with HTML Tables</title>
</head>
<body>
<table> <!-- create an table object -->
<tr> <!-- "tr" represents a row -->
<th>Name</th> <!-- use "th" to indicate header row -->
<th>Date of Birth</th>
<th>Weight</th>
</tr>
<tr> <!-- once again use tr for another row -->
<td>Mary</td> <!-- use "td" henceforth for normal rows -->
<td>12/13/1994</td>
<td>130</td>
</tr>
</table>
</body>
</html>
table html border
<table border>
<thead>
<tr>
<td>To</td>
<td>date</td>
<td>message</td>
</tr>
</thead>
<tbody>
<tr>
<td>Join</td>
<td>24/02/2021 13:00 PM</td>
<td>Thank you for share your pen with me</td>
</tr>
<tr>
<td>Harry</td>
<td>24/02/2021 13:00 PM</td>
<td>Thank you for share your magic wand with me</td>
</tr>
</tbody>
</table>
html table border-style
<head><style>
p.dotted {border-style: dotted;}
p.dashed {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.groove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: dotted dashed solid double;}
</style></head>
<p class="dotted">A dotted border.</p>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us