Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
627 B
8
Indexable
Never
<!DOCTYPE html>
<html>
<head>
	<title>HTML Table Generator</title> 
	
</head>
<body>
	<table>
		<thead>
			<tr>
				<th>DESCRIÇÃO</th>
				<th>TAG</th>
				<th>MÉTODO DE PAGAMENTO</th>
				<th>VALOR</th>
				<th>MOEDA</th>
				<th>CAMBIO UTILIZADO</th>
				<th>VALOR CONVERTIDO</th>
				<th>MOEDA DE CONVERSÃO</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>&nbsp;descriçao</td>
				<td>tag&nbsp;</td>
				<td>método pgt&nbsp;</td>
				<td>valor&nbsp;</td>
				<td>moeda&nbsp;</td>
				<td>cambio ask&nbsp;</td>
				<td>valor * ask&nbsp;</td>
				<td>&nbsp;moeda conv</td>
			</tr>
		</tbody>
	</table>
</body>
</html>