CHAPTER 3 - HTML (Text, Lists, Links, Images)

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

1/30

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.

31 Terms

1
New cards

Adding text to our HTML page is simple using an element opened with the tag ___ which creates a new paragraph. We place all our regular text inside this element (most basic tag)

2
New cards

bold. Highlight important information

3
New cards

strong. Similar to bold, to highlight key text

4
New cards

italic. To denote text

5
New cards

emphasized text. Usually used as image captions

6
New cards

marked text. Highlight the background of the text

7
New cards

small text. To shrink the text

8
New cards

striked out text. To place a horizontal line across the text

9
New cards

underlined text. Used for links or text highlights

10
New cards

inserted text. Displayed with an underline to show an inserted text

11
New cards

subscript text. Typographical stylistic choice.

12
New cards

superscript text. Another typographical presentation style

13
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)

14
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.

15
New cards

    ,

The ____ and _____ tags define the beginning and end of an unordered list.

16
New cards

  • ,
  • The ____ and _____ tags are list item tags, which contain the items or points you are listing

    17
    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

    18
    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

    19
    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

    20
    New cards

    , , href

    insert a simple HTML link using the ___ and ____ tags and the ____ attribute

    21
    New cards

    target

    You can use a ______ attribute to specify where to open the link.

    22
    New cards

    _self

    target attribute. opens the link in the same window or tab as it was clicked

    23
    New cards

    _blank

    target attribute. opens the link in a new window or tab.

    24
    New cards

    _parent

    target attribute. opens the link in the parent frame

    25
    New cards

    _top

    target attribute. opens thelink in the body of the window

    26
    New cards

    framename

    target attribute. opens the link in a named frame

    27
    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)

    28
    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

    29
    New cards

    The _____ tag contains attributes only and does not have a closing tag. The src attribute, which you've already learned how to use, specifies the location (web address or URL) of the image.

    30
    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.

    31
    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