Phone price

 <!DOCTYPE html>

<html>

  <head>

    <meta charset="UTF-8">

    <title>Mobile Phone Prices</title>

    <style>

      table {

        width: 80%;

        margin: 20px auto;

        border-collapse: collapse;

        background-color: #ffffff;

      }


      th, td {

        border: 1px solid #dddddd;

        padding: 8px;

        text-align: left;

      }


      th {

        background-color: #f2f2f2;

        color: #333333;

        font-weight: bold;

      }


      td {

        color: #555555;

      }


      h1 {

        text-align: center;

        color: #333333;

        margin-bottom: 30px;

      }


      .official {

        background-color: #ddffdd;

      }


      .unofficial {

        background-color: #ffdddd;

      }

    </style>

  </head>

  <body>

    <h1>Mobile Phone Prices</h1>

    <table>

      <tr>

        <th>Price Type</th>

        <th>Price (in USD)</th>

      </tr>

      <tr class="official">

        <td>Official</td>

        <td>$999</td>

      </tr>

      <tr class="unofficial">

        <td>Unofficial</td>

        <td>$1050</td>

      </tr>

    </table>

  </body>

</html>


Comments