Websites Flashcards

1
Q

HTML

A

Hypertext Markup Language (HTML) is the code that defines the structure and content of web pages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CSS

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Ul

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

OL

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Tables

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

TR

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

TH

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Li

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly