HTML Coding Flashcards

1
Q
  • Hypertext Markup Language

- a language that is recognized by most browsers used on the Internet

A

HTML

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  • commands written between less than and greater than signs
  • also called angle brackets
  • sometimes there is only one and sometimes there is an opening and closing required
A

Tags

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  • when you modify a page contents with more than one tag
  • inside a tag
  • do not overlap tags
A

nesting tags

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  • denotes a web page

- must be entered at the beginning and end of your code

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

header area

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

title shown in title bar

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

actual content of page

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

paragraph tag

A

<p>

| </p>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  • special options for contained text
  • entered between the command word and the final greater than symbol
  • nested inside tag
A

attributes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
  • a number or a location specified for an attribute

- contain numbers or letters or specific location like left, right, center

A

values

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

main heading

A

<h1>
</h1>

1-6

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q
  • an attribute used to describe where you want something to appear
  • left, right, center, and justify
A

align

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
  • may be entered into the HTML code and will, by default, appear from one side of the browser screen to the other side (straight lines)
  • appear shaded
A

horizontal rules (lines)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
  • used for contact info

- displayed in italics

A

<address>

| </address>

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

horizontal rule

A

<hr></hr>

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

indented quotation

A

<blockquote>

| </blockquote>

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

specifies line thickness in pixels

A

size=number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q
  • specifies line length in pixels

- table width set by pixels

A

width=number

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q
  • specifies line length measured as a % of screen

- table width set by percent of screen size

A

width=number%

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

specifies that there is no shading on the rule

A

noshade

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

specifies left alignment attribute

A

align=left

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

specifies center alignment

A

align=center

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

specifies right alignment

A

align=right

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q
  • numbered list
  • numbered or lettered the way you want
  • by default begins with 1
A

ordered lists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
- bulleted lists | - you can specify type of bullet
unordered list
26
a list that allows you to make a list in definition form
definition list
27
ordered list
    |
28
unordered list
    |
29
line item marker
  • 30
    specify the beginning value of a list
    type=value
    31
    definition list tag
    |
    32
    identifies the definition term
    |
    33
    identify the actual definition
    |
    34
    style tags that are used to make the text stand out more than they already do from the current font style chosen
    emphasis styles
    35
    boldface
    |
    36
    italics
    |
    37
    line break

    |
    38
    strikethrough
    39
    stronger emphasis style usually bold
    |
    40
    underline style
    |
    41
    subscript below the line of text
    |
    42
    superscript above the line of text
    |
    43
    typewriter
    |
    44
    objects in web pages that have rows and columns
    table
    45
    begins the table
    46
    begins a new table row
    47
    begins a single cell within the table
    48
    specifies the width of border
    border=number
    49
    displays a separate caption by default centered above the table
    50
    table header
    51
    allows you to specify how many columns you want a cell to span across
    colspan
    52
    - establishes relationships between the current document and other documents - can be in the form of text or an image
    link
    53
    the document that you are trying to link the the current document to
    target
    54
    - Uniform Resource Locater or address | - any website can be located easily
    url
    55
    when the target of a link is a web page
    named target
    56
    - when the reference contains the target's complete URL that defined the exact location of the file - takes you to another location on the Internet
    absolute reference
    57
    - when the reference to the target contains only the target's file name - assumes that the file is in the same exact folder as the web page that it is referring to - within your page
    relative reference
    58
    anchor tag defines a hyperlink within a web page
    59
    hyperlink reference
    60
    image search
    61
    a color that fills the entire browser window
    background color
    62
    red blue green color specified by two numbers or letters to stand for each
    RGB color
    63
    background color nested inside the tag brackets for body
    Bgcolor=
    64
    allows you to specify color for all text within the document with a color named or #RRGGBB value
    text=
    65
    sets the color for active links which have the lines underneath them at the time the visitor clicks on them with a #RRGGBB value
    alink=
    66
    sets the color for the links the visitor to your page has recently clicked on with a #RRGGBB value
    vlink=
    67
    sets the color for unvisited links with a #RRGGBB value
    link
    68
    allows you to specify the color you want for rules and fonts
    color=
    69
    - sets the text characteristics for the entire document unless you specify differently - code after the beginning body tag and before the closing body tag
    70
    - allows you to specify what font you you want to be used for the body or the area that you put within the font code - you have to specify the font for each platform