HOW TO ADD BOILER PLATE?
- we press SHIFT + 1.
- it will create boiler plate easily.
HOW TO CREATE TABLES?
- we will create tables by adding Table Tag in the body.
- <body>
                        <tr>
                                <td></td>
                        </tr>
                </table>
          </body>
- tr is used for Rows, we add tr for the times we want to add rows.
HOW TO ADD BORDERS OF TABLE?
- <head>
                        td{
                              border:2px solid black;
                             }
                </style>
HOW TO ADD CENTRAL TAG?
- <center>
                       <table>
                                <tr>
                                        <td></td>
                                </tr>
                      </table>
</center>
HOW TO ADD ROWSPAN AND COLSPAN?
- <td colspan="2"> Class 1</td>
0 Comments