How do you create a table in HTML

CEO Name Company Revenue (2023)
John Doe Tech Innovations $10 million
Jane Smith Health Solutions $15 million
Mike Johnson Eco Friendly Corp. $7 million
Keywords: CEO, Company, Revenue, Business Leaders
Description: This table provides information on various CEOs, their companies, and the revenue they generated in 2023.
<?php // Example of creating a simple table using HTML echo "<table border='1'>"; echo "<tr><th>CEO Name</th><th>Company</th><th>Revenue (2023)</th></tr>"; echo "<tr><td>John Doe</td><td>Tech Innovations</td><td>$10 million</td></tr>"; echo "<tr><td>Jane Smith</td><td>Health Solutions</td><td>$15 million</td></tr>"; echo "<tr><td>Mike Johnson</td><td>Eco Friendly Corp.</td><td>$7 million</td></tr>"; echo "</table>"; ?>

Keywords: CEO Company Revenue Business Leaders