/ out03.html
out03.html
 1  <html>
 2  <head>
 3      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 4      <style>
 5          table {
 6              width: 100%;
 7              border-collapse: collapse;
 8          }
 9  
10          th, td {
11              padding: 8px;
12              text-align: left;
13              border-bottom: 1px solid #ddd;
14          }
15  
16          tr:hover {
17              background-color: #f5f5f5;
18          }
19  
20          th {
21              background-color: #4CAF50;
22              color: white;
23          }
24      </style>
25      <script src="out03_fichiers/page-script.js" id="bw-fido2-page-script"></script>
26  </head>
27  <body><h2>Commandes de Jane Doe</h2>
28  <table border="1">
29      <tbody>
30      <tr bgcolor="#9acd32">
31          <th>Menu</th>
32          <th>Date</th>
33          <th>Address</th>
34          <th>Status</th>
35      </tr>
36      <tr>
37          <td>7days</td>
38          <td>2024-04-01</td>
39          <td>456 Example Avenue, Cityville</td>
40          <td>preparing</td>
41      </tr>
42      <tr>
43          <td>5days</td>
44          <td>2024-04-01</td>
45          <td>123 Example Street, Cityville</td>
46          <td>preparing</td>
47      </tr>
48      <tr>
49          <td>5days</td>
50          <td>2024-04-02</td>
51          <td>123 Example Street, Cityville</td>
52          <td>preparing</td>
53      </tr>
54      <tr>
55          <td>5days</td>
56          <td>2024-04-03</td>
57          <td>123 Example Street, Cityville</td>
58          <td>preparing</td>
59      </tr>
60      </tbody>
61  </table>
62  </body>
63  </html>