0% found this document useful (0 votes)
15 views1 page

HTML Table Code Example

The document contains an HTML code snippet for a table with a border. It includes headers for 'Nom', 'Prix', and 'Nombre', and has input fields for items like 'Biscuits', 'Bonbon', and 'Cahiers'. Each item has corresponding text and number input fields for user entry.

Uploaded by

Robt Blu
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

HTML Table Code Example

The document contains an HTML code snippet for a table with a border. It includes headers for 'Nom', 'Prix', and 'Nombre', and has input fields for items like 'Biscuits', 'Bonbon', and 'Cahiers'. Each item has corresponding text and number input fields for user entry.

Uploaded by

Robt Blu
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Code tableau html

<table border="1"bg >


<tr>
<td></td>
<td>Nom</td>
<td>Prix</td>
<td>Nombre</td>
</tr>
<tr>
<td>B</td>
<td><input type="text" id="Biscuits"
name="Biscuits"></td>
<td><input type="number" id="Biscuits"
name="Biscuits"></td>
<td>Bonbon</td>
<td><input type="text" id="Bonbon" name="Bonbon"></td>
<td><input type="number" id="Bonbon"
name="Bonbon"></td>
<td>Cahiers</td>
<td><input type="text" id="Cahiers"
name="Cahiers"></td>
<td><input type="number" id="Cahiers"
name="Cahiers"></td>
</tr>
</table>

You might also like