HTML Flashcards

1
Q

What language is HTML?

A

Markup

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

What is the current W3C recommendation for web development?

A

HTML5

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

What are the elements of HTML?

A

tags and attributes

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

The <_______> contains descriptive elements about the document, such as title, style sheets, JavaScript files

A

head

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

<____> container element used to create logical groupings, like lists

A

div

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

Which three elements are not required in HTML5?

A

<html>, <head>, and <body>
</body></head></html>

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

_________ is structural, ________ styles

A

HTML, CSS

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

How many levels of headings are available in HTML?

A

6 h1-h6

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

Absolute reference vs. relative reference

A

specified path vs leaving out specifiers/childs/descendants

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

&nbsp, &lt, &copy, &trade

A

special characters for symbols with reserved meanings

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

WYSIWYG editors

A

software to help create websites

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

What tag pair is used to create a new paragraph?

A

<p></p>

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

The purpose of the ______ element is used to configure the main navigation area on a web page.

A

nav

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

What type of HTML list will automatically place a bullet point indicator in front of each item?

A

Unordered list

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

What tag pair contains the items in an ordered or unordered list?

A

<li></li>

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

What tag pairs that are used in a description list?

A

<dl></dl>

, <dt></dt>, <dd></dd>

17
Q

Tag pair that displays important text in bold font weight?

A

<strong></strong>

18
Q

When do you need to use a fully qualified URL in a hyperlink?

A

When linking to a page on an external website

19
Q

Which tag does not require a closing tag?

A

<br></br>

20
Q

Which HTML5 element can configure an area on a web page that can stand on its own and could potentially be syndicated?

A

article