Some HTML knowledge I implement on my blog to manipulate the webpage as I need… Tables The Code for a 3×3 Table: <table> <tbody> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> <tr> <td>4</td> <td>5</td> <td>6</td> </tr> <tr> <td>7</td> <td>8</td> <td>9</td> </tr> </tbody> </table> Demonstration of 3×3 table: 1 2 3 4 5 6 7 8 9 Table […]