NEW
Font size
WorksheetsCodeHS Intro to CSS
Total questions: 20
Worksheet time: 12mins
p {color: red;}
What is a CSS selector?
The value in a markup tag you want to change with a CSS style
Any element to which designated styles are applied
A format instruction in a CSS file
The property in a markup tag to which designated styles are applied
To create the largest possible "Heading" in HTML, which tag is correct?
<HeadingLarge>
<Head>
<h1>
<h+>
How would you write a hyperlink to webpage.com?
<a>http://www.webpage.com</a>
<a name="http://www.webpage.com">webpage.com</a>
<a href="http://www.webpage.com">webpage</a>
<a url="http://www.webpage.com">webpage.com</a>
Which of the following tags are formatted correctly to add an image to an HTML document?
<img href="puppy.gif" alt="puppy">
<img src="puppy.gif" alt="puppy">
<image src="puppy.gif" alt="Puppy">
<img alt="puppy">puppy.gif</img>
