How to write physics equation in HTML -
i'm having problem represent below physics equation using html tag
so, how represent above equation html without using mathjax...?? in advance :)
i have tried code :
<table> <tbody> <tr> <td rowspan="2">a sin ω( t - </td> <td style="border-bottom:solid 1px">x</td> <td> )</td> </tr> <tr> <td>v</td> </tr> </tbody> </table>
but don't know how make works
hopefully this might set in right direction:
<table> <tbody> <tr> <td>y = sin ω</td> <td style="font-size:200%">(</td> <td>t -</td> <td> <table> <tr> <td style="border-bottom:solid 1px black">x</td> </tr> <tr> <td>v</td> </tr> </table> </td> <td style="font-size:200%">)</td> </tbody> </table>
there lot can achieve nested tables.