CS50 Notes

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

HTML

A markup language that defines the structure of a web page.

2
New cards

CSS

Stands for Cascading Style Sheet, used for styling web pages.

3
New cards

CSS Selectors

Patterns used to select elements for styling in CSS.

4
New cards

Element Type Selector

A CSS selector that targets elements by their type (e.g., h1, p).

5
New cards

ID Selector

A CSS selector that uses a hashtag (#) to target a unique element; no two elements can share the same ID.

6
New cards

Class Selector

A CSS selector that uses a period (.) to target elements; multiple elements can share the same class, and one element can belong to multiple classes.

7
New cards

Specificity Order

The hierarchy of CSS selectors that determines which styles are applied, in the order of Inline, ID, Class, and Type.

8
New cards

Inline Style

CSS styles applied directly within an HTML element's style attribute.

9
New cards

ID

A unique identifier for an HTML element, used with the ID selector in CSS.

10
New cards

Class

A grouping of HTML elements that can share styles, used with the class selector in CSS.