81 lines
2.0 KiB
Plaintext
81 lines
2.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="x-apple-disable-message-reformatting">
|
|
<title></title>
|
|
<style>
|
|
* {
|
|
color: #037547;
|
|
}
|
|
|
|
h1 {
|
|
margin: 20px auto;
|
|
text-align: center;
|
|
}
|
|
|
|
h3 {
|
|
font-weight: bold;
|
|
text-align: left;
|
|
}
|
|
|
|
table.quotation {
|
|
border: 3px solid #037547;
|
|
border-collapse: collapse;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.quotation thead, tfoot {
|
|
border-width: 3px;
|
|
border-style: solid;
|
|
}
|
|
|
|
.quotation th, .quotation td {
|
|
border: 1px solid #037547;
|
|
color: #037547;
|
|
padding: 4px 25px;
|
|
}
|
|
|
|
.quotation thead th,
|
|
.quotation tfoot th {
|
|
background-color: #E0EBE3;
|
|
}
|
|
|
|
.quotation tbody td {
|
|
background-color: #FFFBFE;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h5>Dear Supplier </h5>
|
|
<table class="quotation" style="border: none; margin-left: auto; margin-right: auto; margin: 0;padding: 0;-webkit-text-size-adjust: 100%;background-color: #ffffff;color: #000000">
|
|
<thead>
|
|
<tr>
|
|
<th>Product Description</th>
|
|
<th>Qty</th>
|
|
<th>Price Offer in CIF</th>
|
|
<th>Manufacturer</th>
|
|
<th>Availability</th>
|
|
<th>Remarks</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>@ViewBag.ItemDescription</td>
|
|
<td>@ViewBag.Qty</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th colspan="6">Lloyd Lab Inc.</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</body>
|
|
</html> |