COMPUTER ALL LESSONS Flashcards

1
Q

is thelanguage in which most websites are written

A

HTML

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

The code used to make HTML visually appealing

A

CSS

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

What is the text/code editor for an HTML document?

A

notepad or notepad ++

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

What application do you use to open a HTML?

A

browser

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

What is the basic structure of a HTML document?

A

<!DOCTYPE html>

<html>
<head>
<title> </title>
</head>
<body>

</body>

</html>

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

are commands written between less than (< )and greater than (>) signs

A

HTML tags

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

The html file/document must end with the extension name .html

A

TRUE

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

Indicates the beginning and the end of the title.

A

<title>
</title>

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

Inserts a horizontal line.

A

<hr></hr>

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

Breaks a line text and marks the start of a new line.

A

<br></br>

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

The beginning and the end of the HTML document.

A

<html>
</html>

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

Indicate the beginning of the paragraph

A

<p>
</p>

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

Contains text in boldface image

A

boldface tag

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

boldface tag syntax

A

<b> </b>

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

big tag syntax

A

<big> </big>

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

Contains text to be rendered in a font size bigger than the default size

A

big tag

17
Q

Contains text which you want to be italic in format

A

italic tag

18
Q

italic tag syntax

A

<i> </i>

19
Q

Contains the text to be rendered with an underline

A

underline tag

20
Q

strikethrough tag syntax

A

<S> </S>

<strike> </strike>

21
Q

underline tag syntax

A

<u> </u>

22
Q

contains text to be marked

A

strikethrough tag

23
Q

is the largest font size

A

H1

24
Q

is the smallest font size

A

H6

25
Q

24 point in size

A

H1

26
Q

12 point in size

A

H4

27
Q

10 point in size

A

H5

28
Q

7 point in size

A

H6

29
Q

18 point in size

A

H2