I have this type of data In notepad file now Abc,2334,gjdjdjd,teetete Sdsd,34343,dfdf,343454 ………………………. ……………….. Now How Can I Covert this type of notepad data in Html table? note: the data should be converted in 4 colon
Just create a table in notepad using HTML and plugging your data in there: <table><tr><td>Text</td></tr></table> That's the only way I see.