Assume that we have the following HTML strings.
string A = " <table width=325><tr><td width=325>test</td></tr></table>"
string B = " <<table width=325><tr><td width=325>test</td></table>"
How can we validate A or B in C# according to HTML specifications?
A should return true whereas B should return false.