How to create HTML Tables?

HTML Tables
Telegram Join Our Telegram Channel

HTML tables allow web developers to arrange data into rows and columns.

A table in HTML consists of table cells inside rows and columns.

Example

A simple HTML table:

<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
</table>

Table Cells

Each table cell is defined by a <td> and a </td> tag.

td stands for table data.

Everything between <td> and </td> are the content of the table cell.

<table>
  <tr>
    <td>Emil</td>
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
</table>

Complete Solution

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Apple iPhone 16, iPhone 16 Pro Release Date Proposed In New Report</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            padding: 10px;
            border: 1px solid #ddd;
        }
        th {
            background-color: #f4f4f4;
        }
        h2 {
            color: #333;
        }
    </style>
</head>
<body>
    <h1>Apple iPhone 16, iPhone 16 Pro Release Date Proposed In New Report</h1>
    <p><em>Updated August 10 with new information about Foxconn and production of this year’s iPhones.</em></p>

    <p>The new iPhone 16 lineup, including the iPhone 16, iPhone 16 Plus, iPhone 16 Pro, and iPhone 16 Pro Max, is expected to be unveiled in about a month. But when exactly will this happen? My detailed predictions cover the sale dates, the keynote announcement, and the unveiling event. Recently, a new production line report has emerged, providing more clarity on the timeline.</p>

    <h2>Increased Production at Foxconn</h2>
    <p>The latest indication comes from Foxconn, the key manufacturer of the iPhone in China, which has recruited a significant number of extra staff. According to Business Korea, as reported by MacRumors, Foxconn has hired 50,000 new workers. This influx of staff is a strong indication that production is ramping up as the release approaches, aligning with a potential release date of Friday, September 20—more on this below.</p>

    <table>
        <tr>
            <th>Source</th>
            <th>Details</th>
        </tr>
        <tr>
            <td>Business Korea</td>
            <td>Reported Foxconn has hired 50,000 new workers.</td>
        </tr>
        <tr>
            <td>MacRumors</td>
            <td>Foxconn’s factory in Zhengzhou, China, is operating at full capacity.</td>
        </tr>
    </table>

    <h2>Production on Schedule</h2>
    <p>This is significant because it suggests that production is on schedule, with no anticipated delays. If this holds true, the likelihood of the iPhone 16 series being available in September is very high.</p>

    <h2>Potential Keynote Date</h2>
    <p>The potential date for the keynote unveiling the hardware—alongside the Apple Watch Series 10 and possibly new AirPods—appears to be Tuesday, September 10. However, Apple is known for its unpredictability, so the date could shift slightly. One day it won't be is Wednesday, September 11, due to the anniversary of the 2001 attacks.</p>

    <h2>Pre-orders and Sale Dates</h2>
    <p>Assuming everything remains on schedule, pre-orders for the iPhone 16 series will likely begin on Friday, September 13, with the phones going on sale on Friday, September 20.</p>

    <table>
        <tr>
            <th>Event</th>
            <th>Date</th>
        </tr>
        <tr>
            <td>Keynote Announcement</td>
            <td>Tuesday, September 10</td>
        </tr>
        <tr>
            <td>Pre-orders Begin</td>
            <td>Friday, September 13</td>
        </tr>
        <tr>
            <td>iPhone 16 On Sale</td>
            <td>Friday, September 20</td>
        </tr>
    </table>

    <h2>Announcement Timing</h2>
    <p>Apple has the flexibility to change its plans up until the last minute, but we can expect the keynote announcement in the first week of September, coinciding with a major electronics trade show. Look out for the announcement on Tuesday, September 3, or Wednesday, September 4. I will provide full details as soon as it’s announced, so check back here then.</p>
</body>
</html>
Telegram Join Our Telegram Channel

Leave a Reply

Your email address will not be published. Required fields are marked *

Telegram Join Our Telegram Channel

Most Viewed

Monthly Best Selling Templates

Check the latest products added to the marketplace. Fresh designs with the finest HTML5 CSS3 coding.