Hello everyone.
#1
I face a little issue.
#2
https://tabs.mowizard23.repl.co/
My goal is to align the content correctly in the columns like in 1.
This is the code
<!doctype html>
<html>
<head>
<title>Table wit Colgroup</title>
</head>
<body>
<center align = "center">
<table border ="3" colspan ="5" cellspacing = "10">
<tr>
<th>Location</th>
<th>Description</th>
<th>Price</th>
<th>Zip code</th>
<th>Contact</th>
<th>Availability</th>
</tr>
<tr>
<td>Florida</td>
<td>15 Property portfolio near FL State University</td>
<td>$2,603,120</td>
<td>32303 & others</td>
<td>646-318-6442</td>
<td><input type ="checkbox" size = ""></td>
</tr>
<tr>
<td>Livingston,NJ</td>
<td>Vacant 200,000 sqft vacant building</td>
<td>$25,750,000</td>
<td>xxx</td>
<td> -------</td>
<td><input type ="checkbox"></td>
</tr>
<tr>
<td>Central FL,55 mins South of Orlando</td>
<td>12 space Mobile Home park</td>
<td>$460,000 + 6% fee</td>
<td>33823</td>
<td>-------</td>
<td><input type ="checkbox"></td>
</tr>
</table>
</center>
</body>
</html>