HTML Flashcards

1
Q

First line in an HTML5 document. Tells web browsers that this document is an HTML5 document.

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

First line in an HTML5 document. Tells web browsers that this document is an HTML5 document.

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

Attribute used to provide the file name of an image

A

src=

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

This tag contains information about the document -

contains metadata, information, and instructions to the Web browsers & Search Engines

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

This tag defines the largest heading

A

<h6></h6>

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

This tag is used to create links

A

<a></a>

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

This tag defines emphasized text with italics

Ex: A sentence that uses <em>this</em> tag!

A

<em></em>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
Each item in an ordered list or unordered list must use this tag
Ex:  <ul>a list 
		<li> list item one </li>
		<li> list item two </li>
	    </ul>
A

<li>
</li>

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

This tag creates a line break

A

<br></br>

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

This tag creates a horizontal line across the page

A

<hr></hr>

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

Attribute used to control the appearance of an element; specifies the inline style for an element
Ex: <h1 style> Headline for the Page</h1>

A

style=

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

All of the content to be displayed on the page is in this tag

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

This tag marks the start of a web page document

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

This tag allows you to add a picture to your web page

Ex: <img></img>

A

<img></img>

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

This tag creates an indented block

A

<blockquote></blockquote>

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

Quoted text

Ex: To be or not to be…

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

Attribute used provide the URL for a hyperlink

Ex: <a> SFA</a>

A

href=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q
This tag creates a list with numbers
Ex:  <ol>a list 
		<li> list item one </li>
		<li> list item two </li>
	    </ol>
A

<ol></ol>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q
This tag creates a list with bullets
Ex:  <ul>a list 
		<li> list item one </li>
		<li> list item two </li>
	    </ul>
A

<ul></ul>

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

This tag creates paragraphs

Ex: <p> A statement to be displayed on the pages </p>

A

<p></p>

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

Use this tag to add comments to your web page

Ex:

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

Attribute used provide text when an image cannot displayed & readers read this to the users who do not see the pages
Ex: <img></img>

A

alt=

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

Defines the title; shows on the tab – not on the web page

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

An attribute that creates a tool tip –a text box that appears as the user’s mouse hovers over it
Ex: Monet’s <cite> Water Lilly</cite> is one of the most famous works of art.

A

title=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Defines contact information in a document | Ex:
SFA, 1936 North Street, Nacogdoches TX 75964
26
Defines a title to a work - a work of art, a book, an art piece, … Ex: Monet’s Water Lilly is one of the most famous works of art
27
Defines a description of a term in a definition list Ex:
Network
structure linking computers together for the purpose of sharing resources
28
Defines the text to be bolded | Ex: Study for the Final Exam!
29
``` Defines a definition list Ex:
Network
structure linking computers together for the purpose of sharing resources
```
30
Defines a term (an item) in a definition list Ex:
Network
structure linking computers together for the purpose of sharing resources
31
Defines metadata about an HTML document | Ex:
32
Defines subscripted text | Ex: In that equation, x1 equals 10
33
Defines superscripted text | Ex: 22 is 4
34
Defines a table Ex: Zoom-Zoom Mazda’s advertisement
35
Defines a cell in a table
36
Defines a header content in a table
37
Defines a table row
38
Specifies a unique id for an element | Ex:

Headline

id=
39
Describes and abbreviated phrase; informs search engines | Ex: The US is in North America.
40
Horizontally aligns the contents of an element. | Ex:

In the center.

text-align
41
Sets the text color of an element. | Ex:

Purple colored letters!

color
42
Sets the text size of an element. | Ex:

Bigger than normal font!

font-size
43
Sets the background color of an element. | Ex:

Purple background.

background-color
44
Sets the font face of an element. | Ex:

Paragraph in Times New Roman font.

font-family
45
what does HTML stand for?
Hyper Text Markup Language
46
is HTML a programming language?
no, it is a markup language
47
what is a markup language?
a set of markup tags
48
What defines the basic structure of the contents of the Web page
HTML structural elements
49
What are HTML tags?
keywords surrounded by angle brackets like
50
what are block level elements
elements that contain content that is viewed as a distinct
51
what is white space
consists of blank spaces, tabs, and line breaks - ignored by the browser; for the human view
52
element?
a distinct object in the document
53
inline element
marks a section of text within a block-level element; format characters and words
54
attributes
control the use, behavior, and/or appearance of elements; provide additional information
55
meta
data about data
56
Attribute used to provide the file name of an image
src=
57
This tag contains information about the document - | contains metadata, information, and instructions to the Web browsers & Search Engines
58
This tag defines the largest heading
59
This tag is used to create links
60
This tag defines emphasized text with italics | Ex: A sentence that uses this tag!
61
``` Each item in an ordered list or unordered list must use this tag Ex:
    a list
  • list item one
  • list item two
```
  • 62
    This tag creates a line break

    63
    This tag creates a horizontal line across the page

    64
    Attribute used to control the appearance of an element; specifies the inline style for an element Ex:

    Headline for the Page

    style=
    65
    All of the content to be displayed on the page is in this tag
    66
    This tag marks the start of a web page document
    67
    This tag allows you to add a picture to your web page | Ex:
    68
    This tag creates an indented block
    69
    Quoted text | Ex: To be or not to be…
    70
    Attribute used provide the URL for a hyperlink | Ex: SFA
    href=
    71
    ``` This tag creates a list with numbers Ex:
      a list
    1. list item one
    2. list item two
    ```
      72
      ``` This tag creates a list with bullets Ex:
        a list
      • list item one
      • list item two
      ```
        73
        This tag creates paragraphs | Ex:

        A statement to be displayed on the pages

        74
        Use this tag to add comments to your web page | Ex:
        75
        Attribute used provide text when an image cannot displayed & readers read this to the users who do not see the pages Ex:
        alt=
        76
        Defines the title; shows on the tab – not on the web page
        77
        An attribute that creates a tool tip –a text box that appears as the user’s mouse hovers over it Ex: Monet’s Water Lilly is one of the most famous works of art.
        title=
        78
        Defines contact information in a document | Ex:
        SFA, 1936 North Street, Nacogdoches TX 75964
        79
        Defines a title to a work - a work of art, a book, an art piece, … Ex: Monet’s Water Lilly is one of the most famous works of art
        80
        Defines a description of a term in a definition list Ex:
        Network
        structure linking computers together for the purpose of sharing resources
        81
        Defines the text to be bolded | Ex: Study for the Final Exam!
        82
        ``` Defines a definition list Ex:
        Network
        structure linking computers together for the purpose of sharing resources
        ```
        83
        Defines a term (an item) in a definition list Ex:
        Network
        structure linking computers together for the purpose of sharing resources
        84
        Defines metadata about an HTML document | Ex:
        85
        Defines subscripted text | Ex: In that equation, x1 equals 10
        86
        Defines superscripted text | Ex: 22 is 4
        87
        Defines a table Ex: Zoom-Zoom Mazda’s advertisement
        88
        Defines a cell in a table
        89
        Defines a header content in a table
        90
        Defines a table row
        91
        Specifies a unique id for an element | Ex:

        Headline

        id=
        92
        Describes and abbreviated phrase; informs search engines | Ex: The US is in North America.
        93
        Horizontally aligns the contents of an element. | Ex:

        In the center.

        text-align
        94
        Sets the text color of an element. | Ex:

        Purple colored letters!

        color
        95
        Sets the text size of an element. | Ex:

        Bigger than normal font!

        font-size
        96
        Sets the background color of an element. | Ex:

        Purple background.

        background-color
        97
        Sets the font face of an element. | Ex:

        Paragraph in Times New Roman font.

        font-family
        98
        what does HTML stand for?
        Hyper Text Markup Language
        99
        is HTML a programming language?
        no, it is a markup language
        100
        what is a markup language?
        a set of markup tags
        101
        What defines the basic structure of the contents of the Web page
        HTML structural elements
        102
        What are HTML tags?
        keywords surrounded by angle brackets like
        103
        what are block level elements
        elements that contain content that is viewed as a distinct
        104
        what is white space
        consists of blank spaces, tabs, and line breaks - ignored by the browser; for the human view
        105
        element?
        a distinct object in the document
        106
        inline element
        marks a section of text within a block-level element; format characters and words
        107
        attributes
        control the use, behavior, and/or appearance of elements; provide additional information
        108
        meta
        data about data