Week 2 Flashcards

EMPOWERMENT TECHNOLOGIES (MTECH) (38 cards)

1
Q

____ stands for _________ ______ ________, and it is the
most widely used language to write/create Web Pages?

A

HTML (Hypertext Markup Language)

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

_________ refers to the way in which Web pages (HTML documents) are linked together. Thus, the link available on a webpage is called _________?

A

Hypertext

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

HTML is a Markup Language which means you use HTML to simply “____-__” a text document with tags that tell a Web browser how to structure it to display.

A

mark-up

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

HTML was developed with the intent of ________ the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers?

A

defining

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

HTML is being widely used to format web pages with the help of _________ ____ available in HTML language?

A

different tags

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

The tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between an opening and a closing tag?

A

<p></p>

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

Whenever you use the _____ element, anything following it starts from the next line?

A

<br></br>

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

This tag is an example of an empty element, where you do not need a pair of opening and closing tags, as there is nothing to go in between them?

A

<br></br>

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

You can use ________ tag to put any content in the center of the page or any table cell?

A

<center>
</center>

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

Are used to visually break-up sections of a document?

A

Horizontal lines

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

The ____ tag creates a line from the current position in the document to the right margin and breaks the line accordingly?

A

<hr></hr>

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

An HTML element is defined by a ________ tag. If the element contains other content, it ends with a _______ tag, where the element name is preceded by a _______ ______(/)?

A

Starting, closing, and forward slash

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

An _________ is used to define the characteristics of an HTML element and is placed inside the element’s opening tag?

A

attribute

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

All attributes are made up of two parts: a ____ and a _____?

A

Name and Value

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

The ____ is the property you want to set. For example, the paragraph <p> element in the example carries an attribute whose name is align, which you can use to indicate the alignment of paragraph on the page?

A

name

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

The _____ is what you want the value of the property to be set and always put within quotations?

17
Q

What are the four core attributes that can be used on the majority of HTML elements?

A

Id
Title
Class
Style

18
Q

What are the two primary reasons that you might want to use an id attribute on an element:

A

unique identifier and to distinguish between elements that have the same name.

19
Q

The _____ attribute gives a suggested title for the element.

20
Q

The _____ attribute is used to associate an element with a style sheet, and specifies the class of element.

21
Q

The style attribute specifies an ______ _____ for an element.

22
Q

It allows you to indicate to the browser about the direction in which the text should flow?

A

The dir attribute

23
Q

It allows you to indicate the main language used in a document, but this attribute was kept in HTML only for backwards compatibility with earlier versions?

A

The lang attribute

24
Q

it is the XHTML replacement for the lang attribute. The value of the ___:____ attribute should be an ISO-639 country code?

A

The xml:lang attribute

25
What kind of attribute is a function that can horizontally alligns tags?
align attribute
26
What kind of attribute have a options of right, left, center?
align attribute
27
What kind of attribute is a function that vertically aligns tags within an HTML element?
valign attribute
28
What kind of attribute have a options of top, middle, bottom?
valign attribute
29
What kind of attribute is a function that places a background color behind an element?
bgcolor attribute or background attribute
30
What kind of attribute have a options of numeric, hexidecimal, RGB values?
bgcolor attribute
31
What kind of attribute have a options of URL?
background attribute
32
What kind of attribute have a options of user defined?
id attribute
33
What kind of attribute is a function that names an element for use with Cascading Style Sheet(CSS)?
id attribute
34
What kind of attribute is a function that classifies an element for use with Cascading Style Sheets(CSS)?
class attribute
35
What kind of attribute is a function that specifies the width of tables, images, or tables cells.
width and height attribute
36
What kind of attribute have a options of numeric value?
width and height attribute
37
What kind of attribute have a options of user defined?
title attribute
38
What kind of attribute is a function that "Pop-up" title of the elements?
title attribute