PRELIMS Flashcards

1
Q

WHAT IS HTML

A

HYPER TEXT MARKUP LANGUAGE

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

it is a standard markup language for creating web pages

A

HTML

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

it is a structure of a web page

A

HTML

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

this document is an html document

A

<!DOCTYPE html>

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

it is a root element of an html page

A

<html>
</html>

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

Contains meta information about html page

A

<head>
</head>

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

specifies a title for the html page(can be seen on the title bar)

A

<title>
</title>

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

defines the documents body

A

<body>
</body>

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

it means large heading

A

<h1>
</h1>

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

it defines paragraph

A

<p>
</p>

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

What are the Simple HTML Document

A

<!DOCTYPE html>

<html>
<head>
<title>
<body>
<h1>
<p>
</p></h1></body></title></head></html>

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

Defined by a start tag, context and a end tag

A

HTML Element

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

Write the html page structure

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

its is a html link

A

<a></a>

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

its is a html link

A

<a></a>

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

it is a link destination

A

<href>
</href>

17
Q

<src> means
</src>

A

Source file

18
Q

<alt> means
</alt>

A

Alternative Text

19
Q

<alt> means
</alt>

A

Alternative Text

20
Q

Two ways to specify the url in the src attribute

A

Absolute URL
Relative URL

21
Q

External image that is hosted in another website

A

Absolute URL

22
Q

Image that is hosted within the website

A

Relative URL

23
Q

Titles or subtitles that you want to display

A

HTML Heading

24
Q

Always starts on a new line

A

Paragraph

25
Q

Thematic break

A

<hr></hr>

26
Q

Used to separate content

A

<hr></hr>

27
Q

Line break

A

<br></br>

28
Q

Defines pre formatted text

A

<pre>
</pre>

29
Q

Used to add style like color or font

A

HTML Style

30
Q

Text Color for an element

A

Color

31
Q

Defines the font to be used

A

Font-family

32
Q

Defines text size

A

font-size

33
Q

Horizontal text alignment

A

text-align