M5 CSS Flashcards

(9 cards)

1
Q

A fundamental stylesheet language essential for modern web development, responsible for the visual presentation and layout of web pages

A

CSS

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

Three core web technologies

A

HTML
JavaScript
CSS

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

Methods to integrate CSS into HTML documents

A
  1. Inline CSS
  2. Internal CSS
  3. External CSS
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Best practice of integrating CSS in HTML documents for its organizational benefits

A

External method

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

When Styles are applied directly to a single HTML element using the style attribute

A

Inline CSS

Example:

<h3> Welcome to MMS 142 </h3>

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

Best used when applying a unique style to a single element, usually for small-scale styling or quick tests

A

Inline CSS

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

When CSS rules are placed within a <style> tag, typically inside the <head> section of the HTML document</style>

A

Internal CSS

Example:

<head>
<style>

 content 
</style>
</head>

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

Usually implemented on styling a single HTML page when the styles are unique to that page

A

Internal CSS

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

When styles are defined in a separate file with a .css extension. The file is then linked to the HTML document using the <link></link> tag in the <head> section

A

External CSS

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