css - Table from Microsoft access to html -
i have table , want add (the 1 inside black squear) future web, manage table, entire code
<!documentype html> <html> <head> <meta charset="utf-8"> <title>asuntos pendientes</title> <link rel="stylesheet" type="text/css" href="index_style.css"> </head> <body> <div class="main-body"> <div class="body-data"> <div class="tabla"> <table> <tr> <th>id</th> <th>fecha</th> <th>servicio</th> <th>asunto</th> <th>fecha controlar</th> <th>fecha de resolucion</th> </tr> <tr> <td></td> <td></td> <td></td> <td></td> <td></td> <td></td> </tr> </table> </div> <div class="input-data"> <label>id</label><input id="id" type="text"><br> <label>fecha</label><input id="fecha" type="date"><br> <label>servicio</label><input id="servicio" type="text"><br> <label>fecha controlar</label><input id="fechacontrolar" type="date"><br> <label>fecha de resolucion</label><input id="fecharesolucion" type="date"><br> <label>asunto</label><textarea id="asunto" placeholder="asunto"></textarea><br> <label>detalle</label><textarea id="detalle" placeholder="detalle"></textarea><br> </div> </div> <div class="col-botones"> <a href="index.html" id="botoncerrar">cerrar formulario</a> </div> </div> </body> </html>
can done in other way? because need table expands when insert or delete data.
Comments
Post a Comment