NEW
Font size
WorksheetsHTML and CSS
Total questions: 25
Worksheet time: 13mins
Annie wants the name of her product to be the main heading at the top of her webpage. Which tag defines
the largest heading?
<h3>Product</h3>
<h5>Product</h5>
<h1>Product</h1>
<h6>Product</h6>
When using a text editor, what file extension(s) must be used when saving as a web document?
txt
html
doc
css
Which line of code correctly places a gif image named "tiger" from the images folder into a webpage?
<img src="tiger" alt="Bengal Tiger" />
<img gif=tiger alt="Bengal Tiger">
<image source="images/tiger.gif" alt=Bengal Tiger" />
<img src="images/tiger.gif" alt="Bengal Tiger" />
In which section is the content of a webpage written?
Head section
HTML section
Body
Title section
Which one of the following is a properly formatted closing tag?
<html />
</html>
<</html>>
<html>
What is the correct syntax to change the background color with css?
body{
background-color: purple;
}
HTML{
background-color = "purple";
}
body{
color=orange;
}
background {
color: purple
}
What is missing from this HTML skeleton?
<!DOCTYPE html>
<html>
<head><title>Title Text</title>
</head>
<body>
<h1>Hello World!</h1>
</html>
</body>
<div></div>
</head>
<head>
How do you change the font color with CSS?
font-color: green;
color: green;
change-font-color: green;
fontcolor=green;
What will this CSS code do?
img {
border-radius: 10px;
padding: 5px
}
It will add rounded corners and some padding to all images in the website
It will add a rounded corner and a border around all images
It will change the format of the first image ONLY
It will add a rounded corner and some padding to the headings in a website
Which of the following is the correct CSS link tag?
<link rel="styles" href="stylesheet.css">
<link href="stylesheet">
<link rel="stylesheet" src="styles.css">
<link rel="stylesheet" type="text/css" href="styles.css">
Which of the following is the ONLY self closing tag?
<img>
<a>
<h4>
<body>
What brackets do you use in CSS?
< >
{ }
( )
[ ]
WHAT website did we use in class as a reference for our code?
w3schools
downloadmoreram.com
Wikipedia
<a>
Defines an article tag
Defines an HTML hyperlink
Defines the link destination
Defines the area
What will this CSS code change?
p {
color: #0000000;
font-family: 'Arial' ;
padding: 20px;
}
It will change the color, font, and padding for any paragraphs in the website
It will change the color, font, and padding for any H1 headings in the website
It will change the color, font, and padding for any images in the website
It will change the color, font, and padding for the FIRST paragraph ONLY in the website
CSS stands for...
Cooperative Standing Style
Continuous Sheet Style
Cascading Style Sheets
Can't See Style
