COMPUTER ALL LESSONS Flashcards

(29 cards)

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

17
Q

Contains text which you want to be italic in format

18
Q

italic tag syntax

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

22
Q

contains text to be marked

A

strikethrough tag

23
Q

is the largest font size

24
Q

is the smallest font size

25
24 point in size
H1
26
12 point in size
H4
27
10 point in size
H5
28
7 point in size
H6
29
18 point in size
H2