MIDTERMS - WEBSYS - PART 1

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

1/18

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.

19 Terms

1
New cards

CSS Grid

A modern solution for creating flexible layouts using rows and columns that adapt to different screen sizes.

2
New cards

Grid Layout

Uses the display: grid; property along with grid-template-columns and grid-template-rows to define the structure of a webpage.

3
New cards

<main> Tag

Specifies the main content in an HTML document, typically enclosing multiple sections or articles.

4
New cards

<article> Tag

Represents independent, self-contained content such as a blog post or news article.

5
New cards

<aside> Tag

Defines content that is related to the surrounding content, usually presented as a sidebar.

6
New cards

Viewport

The visible area of a webpage on a screen; on mobile devices, it represents the entire screen.

7
New cards

<meta> Viewport Element

Used to control the page's dimensions and scaling.

8
New cards

Media Query

A CSS technique used to apply styles based on the characteristics of the user's device, such as screen size.

9
New cards

Media Types

Types of devices that can apply media queries:

10
New cards

all

Applies to all devices.

11
New cards

print

For printing documents.

12
New cards

screen

For screens like desktops and mobile devices.

13
New cards

speech

For screen readers.

14
New cards

and

Combines multiple conditions.

15
New cards

only

Ensures the query applies only if all conditions are true.

16
New cards

not

Reverses the logic of a query.

17
New cards

Breakpoint

A point where a webpage layout changes to adapt to different screen sizes, defined by min-width.

18
New cards

Responsive Image

An image that scales to fit different screen sizes

19
New cards

Responsive Video

A video that adjusts its size to fit different screen sizes using CSS properties similar to responsive images.