HTML Flashcards

1
Q

What HTML tag creates an ordered list?

A

<ol>
</ol>

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

What HTML tag creates an unordered list?

A

<ul>
</ul>

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

How do you change the color of text in HTML using inline CSS?

A

Use the ‘style’ attribute with ‘color’ property. Example: <p style='color:blue;'>This is blue text.</p>

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

Which CSS property changes the background color of a webpage?

A

background-color

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

What is the correct HTML tag for a list item within an ordered or unordered list?

A

<li>
</li>

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

Which of the following creates an ordered list?

A

<ol>
</ol>

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

Which of the following creates an unordered list?

A

<ul>
</ul>

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

How do you change the background color to green using inline CSS?

A
<body style='background-color:green;'>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which of the following is used to change the text color to red?

A

style=’color:red;’
## Footnote:
Remember that American spelling of “colour” is used.

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

What is the CSS property to remove the underline from links?

A

text-decoration: none;

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

How do you change the link color to purple using CSS?

A

a { color: purple; }

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

Which of the following HTML elements is used to define list items?

A

<li>
</li>

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

What does ‘ol’ stand for?

A

Ordered List

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

What does ‘ul’ stand for?

A

Unordered List

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

How to change all links to have a font size of 20px using css?

A

a {font-size: 20px;}

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