HTML Lists HTML supports the following types of lists: ul – Unordered List ol – Ordered List dl – Description List HTML Lists <!DOCTYPE html> <html> <head> HTML Lists </head> <body> Unordered List Red Yellow Blue Green Ordered List Red Yellow...
HTML Tables An HTML table is defined with the <table> tag. The HTML table can have the following elements: The <table> tag defines the HTML table. The <tr> tag is used to define a table row. The <th> tag is used...
HTML Links HTML links are called hyperlinks. The HTML <a> tag defines a hyperlink. The href attribute specifies the address of the link. The target attribute specifies to the browser where to open the linked page. The HTML target attribute can...
HTML Attributes The HTML tags can have the following attributes: The title attribute is used to provide additional information. The href attribute is used to provide the URL for a link. The src attribute is used to provide the URL for...
HTML Headings HTML defines six elements of headings. The headings are H1, H2, H3, H4, H5, and H6. The H1 is the largest and most important, and H6 is the smallest or least important. The size of a heading can be...