Posts

Showing posts from February, 2023

Token information

  <html> <head>  <title>People Token Information</title>  <style>   .box {    border: 2px solid #0077b6;    padding: 10px;    background-color: #f1faee;    color: #023e8a;    font-family: Arial, sans-serif;    font-size: 16px;    font-weight: bold;    text-align: center;    margin-bottom: 20px;   }   table {    border-collapse: collapse;    width: 100%;   }   th, td {    padding: 8px;    text-align: left;    border-bottom: 1px solid #ddd;   }   th {    background-color: #023e8a;    color: #f1faee;   }  </style> </head> <body>  <div class="box">   <h1>People Token Information</h1>  </div>  <table>   <tr>    <th>Price</th>    <td...

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; ...

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>   ...