qm_report/example_summary.html

47 lines
782 B
HTML

<!DOCTYPE html>
<html>
<body>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 10px;
}
</style>
<table>
<tr>
<th>Status</th>
<th style="background-color:LightGrey;">euprod</th>
<th style="background-color:LightGrey;">naprod</th>
<th style="background-color:LightGrey;">cnprod</th>
</tr>
<tr>
<td style="background-color:LightGreen;">>= 99</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
<tr>
<td style="background-color:Orange;">>= 98</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
<td style="background-color:Red;">< 98</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
<td style="background-color:DodgerBlue;">> -1</td>
<td>23</td>
<td>24</td>
<td>25</td>
</table>
</body>
</html>