I just found a website http://www.browser-details.com/browser-detection/ which shows some of the details of the user's computer system. As I am learning HTML tables display, I tried displaying the above site similarly through HTML. I am very sure this is not exact code to retrieve and display information like the above site, but I just want to confirm whether my way of writing HTML code is proper or not.Here is my code sample to display details:\[code\]<!DOCTYPE html><html><table width="100%"><tr><td><div style="background-color:red;"><table align="center"><th>Browser</th></table><div style="background-color:blue;"><table align="center"><td>Slim Browser</td></table></div></div></td><td><div style="background-color:red;"><table align="center"><th>Operating System</th></table><div style="background-color:blue;"><table align="center"><td>Windows 7</td></table></div></div></td><td><div style="background-color:red;"><table align="center"><th>IP Address</th></table><div style="background-color:blue;"><table align="center"><td>117.85.48.222</td></table></div></div></td></tr><tr><td><div style="background-color:red;"><table align="center"><th>JavaScript</th></table><div style="background-color:blue;"><table align="center"><td>Enabled</td></table></div></div></td><td><div style="background-color:red;"><table align="center"><th>Cookies</th></table><div style="background-color:blue;"><table align="center"><td>Enabled</td></table></div></div></td><td><div style="background-color:red;"><table align="center"><th>Color Depth</th></table><div style="background-color:blue;"><table align="center"><td>24</td></table></div></div></td></tr></table></html>\[/code\]Please correct me if I am wrong. Thanks in advance.