HTML BASICS Flashcards

1
Q

What does HTML do?

A

Describes content and structure.

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

What does CSS do?

A

Controls the style and layout of multiple web pages all at once.

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

What does JavaScript do?

A

Controls the behaviour of the web.

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

What language is HTML?

A

Standard markup language for creating web pages.

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

What do HTML elements tell the browser to do?

A

How to display the content!

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

What is the HTML5 declaration?

A

The <!DOCTYPE> declaration they helps to display a web page properly.

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

What is a HTML element?

A

Everything from the start tag to the end tag:

<h1> My first Heading<h1>
</h1></h1>

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

What are empty elements?

A

HTML elements with no content

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

What does the <br></br> tag define?

A

Defines a line break, and is an empty element without a closing tag.

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

What do HTML attributes do?

A

They provide additional information about elements.

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

What does the <img></img> tag do?

A

Used to embed an image in a HTML page,

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

What does the scr attribute specify?

A

The path to the image to be displayed. (Location of image)

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