Category: HTML

HTML Image

HTML Image To insert a picture into a web page, use the img tag. The HTML img tag can have the following attributes: The src attribute is used to provide the URL for a image. The alt attribute is used to...

HTML Lists

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

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 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

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...