Edit Game
Web Design Final Exam Review
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






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