Phone details

 <!DOCTYPE html>

<html>

  <head>

    <meta charset="UTF-8">

    <title>Smart Phone Full Specifications</title>

    <style>

      table {

        width: 80%;

        margin: 20px auto;

        border-collapse: collapse;

      }


      th, td {

        border: 1px solid black;

        padding: 8px;

        text-align: left;

      }


      th {

        background-color: #f2f2f2;

      }

    </style>

  </head>

  <body>

    <h1 style="text-align: center;">Smart Phone Full Specifications</h1>

    <table>

      <tr>

        <th>Key Specification</th>

        <th>Details</th>

      </tr>

      <tr>

        <td>Display</td>

        <td>6.5-inch IPS LCD, 1080 x 2400 pixels, 401 PPI</td>

      </tr>

      <tr>

        <td>Processor</td>

        <td>Qualcomm Snapdragon 865</td>

      </tr>

      <tr>

        <td>RAM</td>

        <td>8GB</td>

      </tr>

      <tr>

        <td>Storage</td>

        <td>128GB, UFS 3.0</td>

      </tr>

      <tr>

        <td>Battery</td>

        <td>4500mAh, non-removable, Fast charging 30W</td>

      </tr>

      <tr>

        <td>Operating System</td>

        <td>Android 11</td>

      </tr>

      <tr>

        <td>Rear Camera</td>

        <td>48 MP, f/1.8, 26mm (wide), 1/2.0", 0.8µm, PDAF, OIS</td>

      </tr>

      <tr>

        <td>Front Camera</td>

        <td>16 MP, f/2.2, 26mm (wide), 1/3.06", 1.0µm</td>

      </tr>

      <tr>

        <td>Connectivity</td>

        <td>Wi-Fi 802.11 a/b/g/n/ac, dual-band, Wi-Fi Direct, hotspot, Bluetooth 5.1, A2DP, LE, aptX HD, GPS, A-GPS, GLONASS, GALILEO, BDS, NFC</td>

      </tr>

    </table>

  </body>

</html>


Comments