HTML Iframe

iframes in HTML Web pages can be embedded within other websites using an HTML Iframe (a webpage within a webpage). An inline frame is a type of frame that is…

HTML id Attribute

HTML id Attribute is the id global attribute creates a unique identifier (ID) for the whole document. Its job is to identify the element when linking (using a fragment identifier),…

HTML class Attribute

HTML class attribute gives an element one or more class names. Most of the time, the class attribute points to a class in a style sheet. But JavaScript can also…

HTML Color Names (A to Z)

HTML colour names and their corresponding hexadecimal codes are provided in an alphabetical list. It\'s set up alphabetically, starting with the letter A. To save on screen real estate, hex…

HTML Block Elements and Inline Elements

Depending on its type, each HTML element has a predefined default display value. You can choose between two different values for the screen: block and inline. Block-level Elements Browsers will…

HTML Description List

HTML Description List | HTML Definition List HTML\'s Description List or Definition List shows elements in the same way that a dictionary does: as definitions. When you want to show…

HTML Unordered List

HTML Unordered List | HTML Bulleted List HTML\'s Unordered List or Bulleted List shows items in a list of bullet points. When we don\'t need to show the items in…

HTML Ordered List

HTML Ordered List | HTML Numbered List HTML\'s Numbered List or Ordered List shows items with numbers. The HTML ol tag is used for a list that is in order.…

HTML Lists

Lists in HTML are used to list information. Web developers can use HTML lists to group items that go together. All lists may contain one or more list elements. There…

HTML Table

Web developers can put data into rows and columns using HTML tables. Table in HTML The HTML table tag shows data in a table format (row by column). A row…