HTML Features Flashcards

(40 cards)

1
Q

element adds a title to your page

A

<title>
</title>

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

should describe the content and the meaning of the page

A

The title

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

The text is used by search engine algorithms to decide the order when listing pages in search results.

A

page title

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

The <title> element</title>

A
  1. defines a title in the browser toolbar
  2. provides a title for the page when it is added to favorites
  3. displays a title for the page in search engine results
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

s a small image displayed next to the page title in the browser tab.

A

Favicon

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

all HTML elements can have attributes(TRUE or FALSE)

A

TRUE

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

provide additional information about elements

A

Attribute

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

Attributes are always specified in

A

the start tag

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

Attributes usually come in

A

name/value pairs
like: name=”value”

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

tag defines a hyperlink

A

<a></a>

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

attribute 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
12
Q

tag is used to embed an image in an HTML page

A

<img></img>

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

attribute specifies the path to the image to be displayed

A

src

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

an alternate text for an image, if the image for some reason cannot be displayed

A

alt attribute

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

<a> tag, stands for</a>

A

anchor

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

By default, links will appear as follows in all browsers

A
  1. An unvisited link is underlined and blue
  2. A visited link is underlined and purple
  3. An active link is underlined and red
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Default. Opens the document in the same window/tab as it was clicked

18
Q

Opens the document in a new window or tab

19
Q

Opens the document in the parent frame

20
Q

Opens the document in the full body of the window

21
Q

a full web address

22
Q

A local link (a link to a page within the same website) is specified with a

23
Q

inside the href attribute to create a link that opens the user’s email program

24
Q

An unordered list starts with the ____ tag

25
Each list item starts with the ____ tag.
  • 26
    An ordered list starts with the ____ tag
    27
    tag defines the description list
    28
    tag defines the term (name)
    29
    tag describes each term
    30
    allow web developers to arrange data into rows and columns
    HTML tables
    31
    Each table cell is defined by
    and
    32
    td stands for
    table data
    33
    Each table row starts with a ____ and ends with a _____ tag.
    and
    34
    tr stands for
    table row.
    35
    Sometimes you want your cells to be table header cells. In those cases use
    36
    th stands for
    table header
    37
    attribute allows you to add a border around the table
    Border
    38
    ttribute specifies the amount of space between the cell content and its border
    Cellpadding
    39
    attribute specifies the amount of space between cells
    Cellspacing
    40
    attributes to specify the dimensions of the table.
    Width and Height