HTML Summary
HTML Summary
Paragraph: <p> Write the text with no spaces and no line breaks
To write a paragraph, <pre> Preserve paragraph written spaces and line
two tags are used: breaks
1/3
Table: <table> to start designing tables rows and columns
Inserting a table with a <tr> to set the row design, consists of a number <td>
set or rows and columns tags
<th> table column title/heading
<td> Table column data
Example:
<table border=2>
<tr><th>row1,name1</th><th>row1,name2</th></tr>
<tr><td>row2,col1</td><td>row2,col2</td></tr>
<tr><td>row3,col1</td><td>row3,col2</td></tr>
</table>
Output:
Output:
2/3
Output:
3/3