Type Here to Get Search Results !

eBooks


    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 20px;

        }

        table {

            width: 100%;

            border-collapse: collapse;

        }

        th, td {

            border: 1px solid #ddd;

            padding: 10px;

            text-align: left;

        }

        th {

            background-color: #f4f4f4;

        }

    </style>


</head>

<body>


    <h2>Book List with Prices</h2>


    <table>

        <tr>

            <th>Book Title</th>

            <th>Author</th>

            <th>Price</th>

        </tr>

        <tr>

            <td>The Great Gatsby</td>

            <td>F. Scott Fitzgerald</td>

            <td>$10.99</td>

        </tr>

        <tr>

            <td>To Kill a Mockingbird</td>

            <td>Harper Lee</td>

            <td>$8.99</td>

        </tr>

        <tr>

            <td>1984</td>

            <td>George Orwell</td>

            <td>$9.99</td>

        </tr>

        <tr>

            <td>The Catcher in the Rye</td>

            <td>J.D. Salinger</td>

            <td>$7.99</td>

        </tr>

    </table>

</body>