
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML5 Validity of Nested Tables
The validator considers the following table as valid:
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"> <title>Example</title> </head> <body> <table> <tbody> <tr> <td> <table> <tbody> <tr> <td>My</td> <td>Table</td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </body> </html>
Advertisements