Adding Images and Links
<img>adds an image to the page. Thesrcattribute specifies the image source, while thealtattribute provides alternative text for accessibility.<a>creates a hyperlink to another web page or email address. Thehrefattribute specifies the link destination, while thetitleattribute provides a tooltip.
Tables
<table>defines a table, used to display data, schedules, or other information in rows and columns.<tr>defines a row within a table, and can contain one or more table data cells or header cells.<td>defines a data cell within a table row, which can contain text, images, or other content.<th>defines a header cell within a table row, typically containing column or row labels.