java web review chapter 2 introduction to HTML

insert image description here
insert image description here
The difference between get and post: https://blog.csdn.net/qq_44721831/article/details/98471707

<body>
    
    <form action="" method="get">
    <table border="1" width="80%">
    <tr>
   行开始标记
    <td colspan="5">列开始标记colspan跨五列
    </td>
      <td rowspan="5">列开始标记rowspan跨两行
    </td>
    </tr>
    
    </table>
    
    </form>
  </body>

insert image description here

Guess you like

Origin blog.csdn.net/qq_43759478/article/details/103793440