LESSON 3 Flashcards
(19 cards)
represent data, such as text, images, etc., in a structured format with rows and columns.
HTML Tables
allow you to arrange data like text, images, and links in rows and columns.
HTML Tables
This tag is used to create the table that wraps the rows and columns within it.
<table>
</table>
Stands for “table row” and is used to create a row within the table.
<tr>
</tr>
Represents “table data” and is used to create standard cells within a row.
<td>
</td>
Represents “table header” and is used to create header cells within a row.
<th>
</th>
are groups or collections of items. These items can be both organized and unorganized depending on the requirement.
HTML Lists
display lists of items that are not in a specific order
Unordered Lists
a collection of items that have a specific order or sequence.
Ordered Lists
define list items having the structure of terms and their corresponding definitions.
Definition Lists
are essential in web development as they allow users to navigate between different web pages, sections within a page, or even external websites.
HTML links (also known as hyperlinks)
a specific type of link that allows users to navigate from one web page or resource to another by clicking on it.
Hyperlink
basic element that creates hyperlinks between two pages.
<a></a>
an HTML element used to group and structure content on a
webpage.
<div>
</div>
an inline container used to group and style small pieces of text or elements within a larger block of content.
<span></span>
are those that start on a new line and take up the entire width of their container by default.
Block-level elements
do not start on a new line and only take up as much width as necessary.
Inline elements
is defined in the HTML code using the “class” keyword, and the styling is determined in CSS.
HTML class attribute
is defined in the HTML code using the “id” keyword, and the styling is determined in CSS.
HTML id attribute