Websites Flashcards
HTML
Hypertext Markup Language (HTML) is the code that defines the structure and content of web pages.
CSS
Cascading Style Sheets is a style sheet language used for specifying the presentation and styling of a document written in a markup language such as HTML or XML
Ul
Unordered List
The hypertext markup language (HTML) <ul> tag stands for “unordered list.” It’s used to create lists where the order of items doesn’t matter, such as bullet-point
OL
Ordered List
ol – ordered list. The ol element represents a list (or sequence) of items; that is, a list in which the items are intentionally ordered, such that changing the order would change the meaning of the list.
Tables
The <table> HTML element represents tabular data—that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
TR
Table Row
The HTML <tr> tag, short for “table row,” is used to define a row in an HTML table. It acts as a container for table data cells (<td> elements) and can also include table header cells (<th> elements).
TH
Table Header
The HTML <th> tag stands for a table header cell in an HTML table. It is used to define headings for columns or rows within the table. <th> elements are typically bold and centered by default, providing semantic meaning to data and aiding accessibility for screen readers and other assistive technologies.
Li
List Items
The <li> HTML element is used to represent an item in a list. It must be contained in a parent element: an ordered list ( <ol> ), an unordered list ( <ul> ), or a menu ( <menu> ). In menus and unordered lists, list items are usually displayed using bullet points.