8.10 Introduction to CSS

8.10 Introduction to CSS

Assessment

Flashcard

Information Technology (IT)

7th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

5 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What does CSS stand for?

Back

Cascading Style Sheets

2.

FLASHCARD QUESTION

Front

Which of the following is the correct way to apply an external CSS file to an HTML document? Options: <css>styles.css</css>, <link rel= "stylesheet" href= "styles.css">, <style>styles.css </styles>, <script src= "styles.css"> </script>

Back

<link rel= "stylesheet" href= "styles.css">

3.

FLASHCARD QUESTION

Front

Which CSS property is used to change the text color of an element?

Back

color

4.

FLASHCARD QUESTION

Front

Which symbol is used to refer to an ID selector in CSS?

Back

# (hashtag)

5.

FLASHCARD QUESTION

Front

What is the correct syntax for selecting all elements in an external CSS file? Options: p { color: blue; }, <p> { color: blue; }, #p { color: blue; }, .p { color: blue' }

Back

p { color: blue; }