skip to Main Content

Html – How can I remove the button from table formating?

<!DOCTYPE html> <html> <style> </style> <body> <h3 style="text-align:center">Schedule</h3> <table id="editableTable" class="center"> <thead> <tr> <th>Name:</th> <th>Surname:</th> <th>Telephone:</th> <th>Address:</th> </tr> </thead> <tbody> <tr> <td><input type="text"></td> <td><input type="text"></td> <td><input type="text"></td> <td><input type="text"></td> <td><button class="btnAdd" onclick="moveToSeparateTable(this)">Add</button></td> </tr> </tbody> </table> </body> </html>" I am struggeling…

VIEW QUESTION
Back To Top
Search