Skip to content

Instantly share code, notes, and snippets.

View MainakRepositor's full-sized avatar
💻
𝗚𝗲𝗻𝗲𝘀𝗶𝘀 𝗼𝗳 𝗖𝘂𝗿𝗶𝗼𝘀𝗶𝘁𝘆 ❣

MAINAK CHAUDHURI MainakRepositor

💻
𝗚𝗲𝗻𝗲𝘀𝗶𝘀 𝗼𝗳 𝗖𝘂𝗿𝗶𝗼𝘀𝗶𝘁𝘆 ❣
View GitHub Profile
@MainakRepositor
MainakRepositor / Table.html
Last active March 24, 2021 17:49
Basic html syntaxes
<-- Snippet to make a html table in a webpage -->
<table>
<thead>
<tr>
<th>heading 1 </th>
<th>heading 2</th>
<th>heading 3</th>
</tr>
</thead>
<tbody>