Chemistry, asked by mmmmuuuuu, 10 months ago

Create a simple HTML for table ​

Answers

Answered by Rememberful
5

\textbf{Answer is in Attachment !}

Attachments:
Answered by rudraasingh
3

HELLO!!

PROGRAM FOR HTML TABLE :

<!DOCTYPE html>

<html>

<body>

<h2>Basic HTML Table</h2>

<table style="width:100%">

<tr>

<th>Firstname</th>

<th>Lastname</th>

<th>Age</th>

</tr>

<tr>

<td>Jill</td>

<td>Smith</td>

<td>50</td>

</tr>

<tr>

<td>Eve</td>

<td>Jackson</td>

<td>94</td>

</tr>

<tr>

<td>John</td>

<td>Doe</td>

<td>80</td>

</tr>

</table>

</body>

</html>

THEN THE OUTPUT WILL BE:(in the form of table)

Basic HTML Table

Firstname Lastname Age

Jill Smith 50

Eve Jackson 94

John Doe 80

THANKS

PLZ MARK IT AS BRAINILIST

Similar questions