Code Generator
Please create a 5 Column table with HTML Css and js
image
Adam Milner

Please create a 5 Column table with HTML Css and js

image
WowDash
        
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="styles.css">
        <title>5 Column Table</title>
    </head>
    <body>
        <div class="table-container">
            <table id="data-table">
                <thead>
                <tr>
                    <th>Column 1</th>
                    <th>Column 2</th>
                    <th>Column 3</th>
                    <th>Column 4</th>
                    <th>Column 5</th>
                </tr>
                </thead>
                <tbody>
                <!-- Table content goes here -->            
                </tbody>
            </table>
        </div>
        <script src="script.js"></script>
    </body>
</html>
        
    
image
Adam Milner

Please create a 5 Column table with HTML Css and js