Study

Web Design Final Exam Review

  •   0%
  •  0     0     0

  • What is the CSS property to style bullets to use a clipart?
    list-style-image
  • This image format compresses images and is often used for digital photographs:
    GIF
    SVG
    JPG
    PNG
  • What tag is used with the HREF attribute to insert a hyperlink?
    A
  • Is ITALICS a BLOCK or INLINE element/
    INLINE
  • Which is not automatically heavier than the base font in HTML?
    H4
    STRONG
    TH
    EM
  • If you add multiple styles inside one tag attribute, how do you separate them?
    Semi-colon
  • This section of a webpage is the "viewable" part.
    Body
  • Hex codes are usually six characters. What do the LAST TWO characters represent?
    BLUE (RRGGBB)
  • This image format is a vector format for high-quality, scalable graphics generated by code:
    GIF
    JPG
    PNG
    SVG
  • Is a TABLE a BLOCK or INLINE element/
    BLOCK
  • To style a colorful image to be in grayscale, apply this property:
    filter
  • Web editors that are not code-based that "show" what the page looks like are called this strange acronym.
    WYSIWYG (what you see is what you get)
  • Closing tags in the reverse order than you opened them (keeping the "rainbow") is called:
    nesting
  • The text displayed in the tab at the top is located in what tag?
    TITLE
  • These are used to read and interpret HTML for webpages:
    Web Browsers
  • Which is a reasonable size for an image bullet?
    150px
    25px
    100px
    50px
  • HTML tags are contained within what?
    Angle Brackets < >
  • What tag is used to "enter" in the middle of a paragraph or heading?
    BR
  • The three parts of a border are:
    style, size, color
  • Which type of style sheet is typed inside tags?
    inline (the style attribute)
  • To center a table or div on the margin, style this:
    margin: auto;
  • Give an example of a semantic HTML5 layout tag:
    header, footer, aside, main (the named parts)
  • To create a hyperlink that jumps down the page to a named ID, what do you put for href?
    # and the ID name (#place)
  • Links are automatically this color:
    blue
  • Which pseudo-class is used to shade rows in a table
    tr:nth-child()
  • The year Google Chrome browser was started:
    2008
  • To give text a highlighter effect, what HTML can you use around it?
    MARK
  • Entity codes begin with this:
    & (Ampersand)
  • This image format is best used for line drawings and is a web format that supports animation:
    PNG
    GIF
    SVG
    JPG
  • This image format has a small file size, millions of colors, and supports transparency:
    PNG
  • What heading level is the smallest?
    H6
  • What pseudo-class is used to create an alternative format when hyperlinks are pointed to:
    a:hover
  • Google's browser call called:
    Chrome
  • What style attribute would create a list with capital roman numerals (I, II, III, IV)?
    upper-roman
  • This CSS property would be used to remove the underline from hyperlinks:
    text-decoration
  • To merge the top row of a table use this attribute:
    colspan
  • Review the CSS code. Which part refers to the SELECTOR? Example: p { text-align:center; }
    P
  • HTML stands for HyperText __________ Language
    Markup
  • To create a class on the CSS page that can be used to modify text put this in front of the class name:
    period
  • What tag is used to connect an external stylesheet?
    link
  • #FF0000 would be what color:
    red
  • The first graphical web browser was called:
    Mosaic
  • #00FF00 would be what color:
    green
  • What CSS refers to the color of TEXT on a page?
    color
  • When used in the head section, what must the group of CSS rules be surrounded by?
    Opening/closing style tag
  • Is an HR a BLOCK or INLINE element?
    BLOCK
  • Are images BLOCK or INLINE elements?
    INLINE
  • VISITED LINKS are automatically this color:
    purple
  • Hex codes are usually six characters. What do the FIRST TWO characters represent?
    RED (RRGGBB)
  • To prevent a table with borders on cells from "doubling up" style the table for this:
    border-collapse
  • Which is an example of an empty tag?
    STRONG
    HR
    P
    H2
  • What attribute is used to open a hyperlink in a new window/tab?
    target="_blank"
  • Which generic CSS font-family is used with Times New Roman?
    serif
  • What type of links are the ones that link off your website to another website on the internet?
    Absolute (the ones on yours are Relative)
  • Microsoft's browser is called:
    Edge
  • Hexadecimal color codes begin with this:
    # (number sign)
  • If the paragraph after an unordered list is erroneously indented, what likely happened?
    The list wasn't turned off (missing </ul>)
  • Which attribute used with images is used to describe the image for accessibility purposes?
    alt
  • How do you center an image on the page?
    Center the paragraph holding it
  • What should be styled in the CSS to create rounded edges on an image?
    border-radius
  • What style attribute would create a list with capital letters (A, B, C)?
    upper-alpha
  • Which list-style-type displays hollow circles?
    circle
  • This CSS property would be used to create italicized text:
    font-style
  • Inside a tag, if you have extra info such as style="color:blue", what is that called:
    Attribute
  • What type of list displays numbers by default?
    OL
  • The is at the top of an HTML document that tells browsers and validators what version of HTML the webpage is written in:
    DOCTYPE declaration