JOUR 108 FINAL UNR 2019
How do you insert a comment in a CSS file?
/* this is a comment */
What's the correct HTML tag to make a text bold:
<b></b>
What is the correct HTML tag for inserting a line break?
<br>
Choose the correct HTML tag for the largest heading:
<h1>
Choose the correct HTML tag to make a text italic:
<i></i>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="style.css">
What is the correct HTML tags to make a paragraph:
<p></p>
Which HTML element is used to define an internal CSS to a single HTML page?
<style> in the <head> section
How can you make a bullet-point (unordered) list?
<ul> <li></li> <li></li> <li></li> </ul>
When using headings and subheads in text, it is best to...
Either symmetrical (centered) and asymmetrical (left or right aligned) headings and subheadings are fine, but they shouldn't both be used in the same design.
Which property is used to change the background color?
background-color
How do you add a background color to a whole website?
body {background-color: #FFFFFF;}
Which is the correct CSS syntax?
body {color: black;}
Which property is used to change the font color?
color
Is the grid a prescriptive design tool?
false
Which CSS property controls the text size?
font size
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 correct CSS syntax for making all the heading elements bold?
h1, h2, h3, h4, h5, h6 {font-weight:bold;}
Which of these common tags does not close?
img
How do you make a list that lists its items with squares?
list-style-type: square;
Which property is used to change the left margin of an element?
margin-left
How do you make each word in a line of text start with a capital letter?
text-transform:capitalize
Which property is used to change the font of an element?
Both font-family and font can be used
What does CSS stand for?
Cascading Style Sheets
What does HTML stand for?
Hypertext Markup Language
Where in the HTML document is the correct place to refer to an external style sheet?
In the <head> section
What is a good way to establish hierarchy in a grid?
Position and size
What are image modules?
Spaces created within a grid for the placement of pictorial elements.
What is creative commons?
The spectrum of usage and sharing between full copyright and the public domain.
How do you display hyperlinks without an underline?
a {text-decoration:none;}
How do you change the color of hyperlinks when the user mouse hovers over them?
a:hover [color: #FF3333;]