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>
               <table>

                        <tr>

                                <td></td>

                        </tr>

                </table>

          </body>

  • tr is used for Rows, we add tr for the times we want to add rows.
td is for Table Data, in which we add data of the columns.

HOW TO ADD BORDERS OF TABLE?

  • <head>
                <style>
                        
                        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>