HTML Flashcards

1
Q

What does HTML stand for?

A

HyperText 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

What makes webpages pretty? That’s CSS? Which is?

A

Cascading Style Sheets

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

Type this on the first line. This line will define the page as html5.

A

!DOCTYPE html

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

Always put this on the second line? This starts the html file.

A

html

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

Always put this on the last line. This stops the html file.

A

/html

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

Things inside these angle brackets < > are called what?

A

tags

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

Tags nearly always come in pairs: an _______ tag and a _________tag.

A

opening closing

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

The ____ contains information about your HTML file, like its title.

A

head

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

The ____ is where you put your content, such as text, images, and links.

A

body

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

In HTML, the characters < and > are known as ______ brackets.

A

angle

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

This represents an opening or closing tag? /html

A

closing tag

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

Choose the correct HTML element for the largest heading:

h1

h2

h3

h6

#

A

h1

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

What is the correct HTML for adding a background color?

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

What is the correct HTML for creating a hyperlink?

A

a href=”http://www.w3schools.com” W3Schools /a

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

Which character is used to indicate an end or closing tag?

/

*

<

A

/

17
Q

How do you see the hidden html code on websites. Press control and what letter on the keyboard?

A

u

18
Q

What is the correct HTML for inserting an image?

image.gif

<image></image>

A
19
Q

What is wrong with this hyperlink?

A

missing the second “ after .com