• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/23

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

23 Cards in this Set

  • Front
  • Back
What was HTML not intended to contain?
HTML was never intended to contain tags to format a document.
What was the intention behind HTML?
HTML was intended to define content.
What is Property?
Property is a style attribute you want to change.
What is an ID Selector?
ID selector is used to specify style for a single element.
What is a Class Selector?
Class selector is used to specify style for group of elements.
What is External SS?
Style sheet externally saved.
What is Internal SS?
Style sheet internally saved.
What is Inline SS?
Style attribute goes into relevant tag.
What are the background repeat settings by default?
Repeat horizontally and vertically.
What is the Color property used for?
Color property defines color of text.
What does a CSS Rule look like?
{property:value;}
What does a CSS Comment look like?
/*This is a comment*/
What does an ID selector look like?
#ID
What does an Class selector look like?
.Class
What does it look like when you specify HTML elements by class?
Selector.Class
How does one link an external style sheet?
<head>
<link rel="stylesheet" type="text/css" href="name.css" />
How does one link an internal style sheet?
<head>
<style type = "text/css">
hr {color:siena;}
p {margin-left:20px;}
</style>
</head>
How does one link an inline style sheet?
<p style="color:sienna;margin-left:20px">
This is a paragraph
</p>
What does the Background Color Property look like?
body {background-color:cyan;}
What does the Background Image Property look like?
body {background-image:url ('image.gif');}
What does the Background Image Repeat Horizontally Property look like?
body {background-image:repeat-x;}
What does the Background Image Repeat Vertically Property look like?
body {background-image:repeat-y;}
What does the Background Image No Repeat Property look like?
body {background-image:no-repeat;}