HTML INTERMEDIATE Flashcards

1
Q

You can add notes or explanations to your code with the comment tag:

A

<!-- … -->

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

Comment: Heading below
Heading 3: Product features

A

<!--Heading below-->

<h3>Product features</h3>

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

You can use comment for two things. Which?

A

Help others
Disable a command

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

Line break tag

A

<br></br>(without the closing tag)

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

Text: Stay Hungry
Stay Foolish

A

<p>Stay Hungry<br></br>Stay Foolish</p>

(without the closing tag for the line break)

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

The ______ container tag is used to group everything that gets displayed on a page when loaded in a browser.

A

<body>
</body>

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

Body tags are needed for your page to be compatible with:

A

all web browsers

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

The ______ container tag is used to include technical information about the page.

A

<head>
</head>

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

3 elements nested in the head tag

A

Title, description and keywords

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

How many body elements are allowed on a web page?

A

1

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

Some HTML tags need to be placed inside others. This is called:

A

Nesting

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

Tag for bold text

A

<b></b>

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

Bold text:Web development

A

<b>Web development</b>

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

Tag for italic text

A

<i></i>

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

Text in italic: Digital marketing

A

<i>Digital marketing</i>

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

Tag for underline text

A

<u></u>

17
Q

Underline text: Search Engine

A

<u>Search Engine</u>

18
Q

Normal text: Movie
Italic text: E.T

A

<p>Movie<i>E.T.</i></p>

19
Q

Programs that make the content of a web site accessible to users who are blind, visually impaired or have a learning disability.

A

Screen readers

20
Q

Tag used to highlight important text.

A

<strong></strong>

21
Q

Important text: Warning!

A

<strong>Warning!</strong>

22
Q

Tag used for emphasized text.

A

<em></em>

23
Q

Emphasized text: The Book of Life

A

<em>The Book of Life</em>

24
Q

What is HyperText?

A

Text that contains a link to another page.

25
Q

Tag used to create a hyperlink on a web page.

A

<a></a>

26
Q

How to create a hyperlink?

A

<ahref=”url”>Z</a>

27
Q

True or false:
URLs can be enclosed in matching single (‘) or double quotes (“). There is no difference as long as they match.

A

True

28
Q

Tag used for lists.

A

<list>
</list>

29
Q

___1</list>

<list>2\_\_\_
</list>

A

<list>
</list>

30
Q

Tag for ordered lists

A

<ol>
</ol>

31
Q

Create an ordered list for coffee, tea and milk.

A

<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

32
Q

Tag used to create unordered lists

A

<ul>
</ul>

33
Q

Create an unordered list for apple, banana, milk and cheese

A

<ul>
<li>Apple</li>
<li>Banana</li>
<li>Milk</li>
<li>Cheese</li>
</ul>