How to write physics equation in HTML -


i'm having problem represent below physics equation using html tag

enter image description here

so, how represent above equation html without using mathjax...?? in advance :)

i have tried code :

<table>       <tbody>         <tr>           <td rowspan="2">a sin &omega;( 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 &omega;</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.


Popular posts from this blog

php - How should I create my API for mobile applications (Needs Authentication) -

5 Reasons to Blog Anonymously (and 5 Reasons Not To)

Google AdWords and AdSense - A Dynamic Small Business Marketing Duo