WEBPROG - chap 3

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

bold

Highlight important information

2
New cards

strong

Similar to bold, to highlight key text

3
New cards

italic

To denote text

4
New cards

emphasized text

Usually used as image captions

5
New cards

marked text

Highlight the background of the text

6
New cards

small text

To shrink the text

7
New cards

striked out text

To place a horizontal line across the text

8
New cards

underlined text

Used for links or text highlights

9
New cards

inserted text

Displayed with an underline to show an inserted text

10
New cards

subscript text

Typographical stylistic choice.

11
New cards

superscript text

Another typographical presentation style

12
New cards
Lists
are very common in web pages. They're used in online articles, navigation menus, and product features on e-commerce websites. (unordered, ordered, nested)
13
New cards
unordered list
is a simple HTML list that you can use when the order of the items you're listing isn't important, and rearranging the order wouldn't cause confusion or change the hierarchy of the list.
14
New cards
    ,
The ____ and _____ tags define the beginning and end of an unordered list.
15
New cards
  • ,
  • The ____ and _____ tags are list item tags, which contain the items or points you are listing
    16
    New cards
    Ordered lists
    are used when the order of the items is important, for example, a list of instructions that must be followed in order. The syntax is the same as for unordered lists
    17
    New cards
    nested list
    is a little more complex, because it's essentially a "list within a list" with a variety of different indentations and bullet point types used to denote points and sub-points
    18
    New cards
    HTML links
    are hyperlinks which allow the user to click and navigate to another page or document. When a piece of text is hyperlinked, a mouse cursor will turn into a hand icon to show the user that it is clickable
    19
    New cards
    , , href
    insert a simple HTML link using the ___ and ____ tags and the ____ attribute
    20
    New cards
    target
    You can use a ______ attribute to specify where to open the link.
    21
    New cards
    _self
    target attribute. opens the link in the same window or tab as it was clicked
    22
    New cards
    _blank
    target attribute. opens the link in a new window or tab.
    23
    New cards
    _parent
    target attribute. opens the link in the parent frame
    24
    New cards
    _top
    target attribute. opens thelink in the body of the window
    25
    New cards
    framename
    target attribute. opens the link in a named frame
    26
    New cards
    mailto:
    Use _______ inside the href attribute to create a link that opens the user's email program (to let them send a new email)
    27
    New cards
    Title
    The image's _____ attribute specifies extra information about an element. The information is most often shown as a tooltip text when the mouse moves over the element
    28
    New cards
    Alt
    The image's ___ attribute provides alternate text for an image, in case the user can't view the image itself. This could be caused by a slow Internet connection or an error in the src attribute.
    29
    New cards
    Alt
    Putting ___ attributes in place for your images ensures that your users (and search engines) can see what's meant to be there, even if there is a problem with loading the image