Journalism
Choose the correct HTML tag for the largest heading:
<h1>
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="style.css">
What is the code to make a numbered (ordered) list?
<ol> <li></li> <li></li> <li></li> </ol>
Choose the correct HTML tags to make a paragraph:
<p></p>
How can you make a bullet-point (unordered) list?
<ul> <li></li> <li></li> <li></li> </ul>
How do you add a background color to a whole website?
body {background-color: #FFFFFF;}
Which is the correct CSS syntax?
body {color: black;}
Using CSS, how do you display a border like this? The top border = 10 pixels The bottom border = 5 pixels The left border = 20 pixels The right border = 1 pixel
border-width:10px 1px 5px 20px;
How can you make a link open in a new tab browser window?
<a href="url" target="_blank">
What is the correct HTML tag for inserting a line break?
<br>
Is the grid a prescriptive design tool?
False
What is a good way to establish hierarchy in a grid?
Position and size
What are gutters?
The spaces separating two columns.
When no text is emphasized (ie the design has a neutral hierarchy), where does the reader's eye go first?
Top left corner of the page
How do you change the color of hyperlinks when the user mouse hovers over them? (Hint: CSS pseudo-class)
a:hover {color: #FF3333;}
Which of these common tags does not close?
img
Which CSS property controls the font size?
font-size
What is the correct CSS syntax for making all the heading elements bold?
h1, h2, h3, h4, h5, h6 {font-weight:bold;}
What is the HTML attribute name in the following line of code? <p lang="en us">Paragraph in English</p>
lang
How do you make a list that lists its items with squares?
list-style-type: square;
Which HTML attribute is used to define an inline CSS style to a single HTML element?
style
How do you make each word in a line of text start with a capital letter?
text-transform:capitalize