W3 HTML Flashcards

1
Q

What does HTML stand for?

A

Hyper Text Markup Language

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

Who is making the Web standards?

A

The World Wide Web Consortium

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

Choose the correct HTML tag for the largest heading

A

<h1>
</h1>

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

What is the correct HTML tag for inserting a line break?

A

<br></br>

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

What is the preferred way for adding a background color in HTML?

A

body style=”background-color:yellow”

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

Choose the correct HTML tag to make a text bold

A

<b></b>

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

Choose the correct HTML tag to make a text italic

A

<i></i>

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

What is the correct HTML for creating a hyperlink?

A

<a>W3Schools</a>

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

How can you create an e-mail link?

A

<a></a>

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

How can you open a link in a new browser window?

A

<a></a>

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

Which of these tags are all tags?

A

table tr td

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

Choose the correct HTML to left-align the content inside a tablecell

A

td align=”left”

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

How can you make a list that lists the items with numbers?

A

<ol>
</ol>

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

How can you make a list that lists the items with bullets?

A

<ul>
</ul>

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

What is the correct HTML for making a checkbox?

A

input type=”checkbox” /

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

What is the correct HTML for making a text input field?

A

input type=”text” /

17
Q

What is the correct HTML for making a drop-down list?

A

select

18
Q

What is the correct HTML for making a text area?

A

textarea

19
Q

What is the correct HTML for inserting an image?

A

<img></img>

20
Q

What is the correct HTML for inserting a background image?

A

body background=”background.gif”