HTML Flashcards

To memorize the everything

1
Q

Document type declaration of HTML and helps browser to display web pages correctly?

A

<!DOCTYPE html>

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

What is the beginning and end of html document?

A

<html> and </html>

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

Visible part of html?

A

<body> and </body>

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

What is the tag of headings?

A

<h1> and </h1>

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

What is the tag of paragraph?

A

<p> and </p>

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

What is the tag of Links?

A

<a> and </a>

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

What is the attribute of making a link and specifies the URL of the page the link goes to:

A

href= (?)

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

What is the tag of images?

A

<img></img>

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

what is attribute of source file?

A

src

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

what is attribute of alternative text?

A

alt

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

what is the attribute of adjusting a size of an image in pixel?

A

width and height

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

What tag defines a line break, and is an empty element without a closing tag?

A

<br></br>

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

That provide additional information about elements?

A

Attributes

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

Attribute is used to add styles to an element, such as color, font, size, and more.

A

style=”element:Charac;”

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

to declare the language of the Web page. This is meant to assist search engines and browsers.

A

lang=”en”

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

attribute defines some extra information about an element.

A

title=”text”

17
Q

you can specify the size for any heading with the style attribute, using the CSS?

A

font-size

18
Q

The ____ tag defines a thematic break in an HTML page, and is most often displayed as a horizontal rule.

A

<hr></hr>

19
Q

What are the empty tags?

A

<br></br>, <hr>

20
Q
A