Here are the top 10 shorthands of HTML:
<br>
: This is the shorthand for a line break tag. It is used to insert a line break or new line within a paragraph or other HTML element.<hr>
: This is the shorthand for a horizontal rule tag. It is used to create a horizontal line to separate content.<img>
: This is the shorthand for an image tag. It is used to insert images into HTML documents.<a>
: This is the shorthand for an anchor tag. It is used to create hyperlinks that can be clicked to navigate to other pages or sections within a page.<ul>
: This is the shorthand for an unordered list tag. It is used to create bulleted lists.<ol>
: This is the shorthand for an ordered list tag. It is used to create numbered lists.<li>
: This is the shorthand for a list item tag. It is used to mark individual items within a list.<table>
: This is the shorthand for a table tag. It is used to create tables for displaying data.<tr>
: This is the shorthand for a table row tag. It is used to create rows within a table.<td>
: This is the shorthand for a table data tag. It is used to create cells within a table row.
These shorthands are commonly used in HTML documents and can save time and effort when creating web pages.