WorksheetsKiểm tra cuối học kì 2 - K10
Total questions: 25
Worksheet time: 17mins
src attribute and then displays it.src attribute and then displays it.When making a web page, which two of the following tasks is HTML the most important language for? (Choose TWO)
Making the text a different color.
Separating out headings from paragraphs
Putting borders on an image
Adding information about the copyright
Organizing text into a list
A group of artists is making a website. When should they use classes?
They want to make their h3 tags bigger than their h1 tags.
They want headings to be one color, but paragraphs to be a different color.
They want some images to float left, and other images to float right.
They want all the pages on their site to have the same style.
They want make a special color using RGB codes.
A student is using a stylesheet to make all the paragraphs on the website green, but it's not working on index.html, even though it works on the other web pages. What could be causing the problem?
1 only
3 only
1 and 2 only
1 and 3 only
1, 2, and 3
What code in the stylesheet could have made the text green? (Choose TWO)
.p {
color:green;
}
p {
color:green;
}
.special {
color:green;
}
special {
color:green;
}
The web developer wants to make the "My Page" text larger. Which TWO of the following would work? (Choose TWO)
Use <h6> instead of <h3>
Use <h1> instead of <h3>
Put the "My Page" text inside the tags.
Use CSS to set the font-size property of the h3 tag
Put the code style="larger" inside the h3 tag.
Which of the following is true about copyright?
If an image is already on one web page, it's okay to use it on any web page.
If you make a lot of changes to an image, you do not need the permission of the original creator to post it on your site.
Image creators can decide both who can use their images and how the images can be used.
If there is no copyright information for an image, anyone is free to use it on their own sites.
You must always contact the creator for permission to use an image on your site.
What is the correct HTML element for inserting a line break?
<br>
<lb>
<break>
What is the correct HTML for adding a background color?
<background>yellow</background>
body {"background-color:yellow;}
(body bg="yellow")
background color = "yellow"
What is this tag used for?
<tc> content </tc>
table columns
table rows
table headers
tc is not a tag
What is a HTML tag?
A tag at the end of a HTML
A closing and opening to a Sentence, Header ex.
A paragraph in a website
A opener to a website
What is a CSS?
A language that adds style to the page
A language used to structure the content of a page
The body of your website
The bones of your website
HTML stands for:
HyperText Markup Language
HyperTurbo Machine Language
HyperTraining Making Language
HappyTime Makeup Lounge
Every website begins with a file named:
page.html
start.html
main.html
index.html
The tag that signals to a computer that the file it is reading is an HTML document is _____________ .
<web>
<!DOCTYPE html>
<head>
<html>
What is a bug?
Part of a program that does not work correctly
a Hemipteron
Part of a program that does work correctly
Finding and fixing problems in an algorithm or program.
The <img> tag is empty; it doesn't have a ______ tag.
new
freestyle
closing
Which of the following will correctly display the words above?
<h3> Eggs </h3>
<h1> Bacon </h1>
<h6> Waffles </h6>
B<h1> Eggs </h1>
<h2> Bacon </h2>
<h3> Waffles </h3>
<h6> Eggs </h6>
<h1> Bacon </h1>
<h3> Waffles </h3>
