NEW
Font size
WorksheetsHTML & CSS
Total questions: 30
Worksheet time: 10mins
the main heading in a web document?
What is the correct syntax to change the background color with css?
background-color: purple;
background-color = "purple";
backgroundcolor=orange
change-background-color: purple
TRUE OR FALSE: CSS is used to style web pages
True
False
What is missing from this HTML skeleton?
<!DOCTYPE html>
<html>
<body>
</body>
</html>
<head></head>
<div></div>
<img></img>
<head>
What tag do you use to make a numbered list?
<list>
<ol>
<li>
<ul>
How do you change the font color with CSS?
font-color: green;
color: green;
change-font-color: green;
fontcolor=green;
Where should you put the link tag to connect your CSS and HTML file?
Between the <head> </head> in HTML
Between the <body> </body> in HTML
None of the above.
TRUE OR FALSE: HTML is used to add content to web pages.
True
False
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" href="styles.css">
HTML stands for
Hyper Text Marker Language
Hyper Text Marker Lingo
Hyper Text Markup Language
Hyper Text Markup Lingo
CSS stands for
Code Style Sheet
Coding Style Sheet
Cascading Sheet Style
Cascading Style Sheet
Which is the correct CSS syntax?
body {color: yellow;}
body:color=yellow;
{body:color= yellow;}
{body;color: yellow;}
An inline cascading coding would appear
inside external *.css file
inside the <head> tag
inside the <body> tag
inside an HTML element
Using an ________________ style sheet, you can change the look of an entire Web site by changing one file.
Inline
Internal
Extra
External
JavaScript was designed to add____________________ to a web page.
Pop up box
Style
Interactivity
Flash
What symbol is used to indicate an end tag?
>
/
}
;
Who is making the Web standards?
Microsoft
Mozilla
World Wide Consortium
World Wide Web
