Which HTML tag is used to define an internal style sheet?
Which HTML attribute is used to define inline styles?
styles
class
font
style
What is the correct CSS syntax for making all the
elements bold?
p {font-weight:bold}
p {text-size:bold}
How do you make each word in a text start with a capital letter?
text-transform:capitalize
ext-transform:uppercase
You can't do that with CSS
How do you change the left margin of an element?
left-margin:
margin:
margin-left:
text-indent:
What are the three methods for using style sheets with a web page
Dreamweaver, GoLive or FrontPage
Inline, embedded or document level and external
Handcoded, Generated or WYSIWYG
Which property applies a color to text?
text-color
foreground-color
background-color
color
In what form are style rules presented?
selector { property: value }
selector { property= value }
selector ( property: value )
selector ( property= value )
What does the ID selector do?
Apply the style to a specific element
Apply the style to all the elements
Apply the style to a group of elements
Apply the style to elements of the same type
A ___________ consist of a property and a value,
Tag
Attribute
Deceleration
This is H1
h1 {color: red;}