Dynamic-Pricing / templates /table.html
Ayush456's picture
Upload folder using huggingface_hub
aba2f7b verified
Raw
History Blame Contribute Delete
396 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Data Table</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
</style>
</head>
<body>
<h2>Predicted Data</h2>
{{ table | safe }}
</body>
</html>