Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Web page #290

Open
Varun2837 opened this issue Jun 20, 2024 · 0 comments
Open

Web page #290

Varun2837 opened this issue Jun 20, 2024 · 0 comments

Comments

@Varun2837
Copy link

<title>Table and Lists Example</title> <style> /* Optional CSS for styling */ table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } th, td { border: 1px solid black; padding: 8px; text-align: left; } ul { list-style-type: none; padding: 0; } </style>

Table and Lists Example

<h2>Sample Table</h2>
<table>
    <thead>
        <tr>
            <th>Name</th>
            <th>Age</th>
            <th>Location</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>John Doe</td>
            <td>30</td>
            <td>New York</td>
        </tr>
        <tr>
            <td>Jane Smith</td>
            <td>25</td>
            <td>San Francisco</td>
        </tr>
    </tbody>
</table>

<h2>Sample Lists</h2>
<h3>Unordered List</h3>
<ul>
    <li>Item 1</li>
    <li>Item 2</li>
    <li>Item 3</li>
</ul>

<h3>Ordered List</h3>
<ol>
    <li>First item</li>
    <li>Second item</li>
    <li>Third item</li>
</ol>
@Varun2837 Varun2837 changed the title Web page Web page Jun 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant