NEW
Font size
WorksheetsHTML & CSS
Total questions: 30
Worksheet time: 15mins
______ is used to create electronic documents (called pages) that are displayed on the World Wide Web. Every web page you see on the Internet is written using one version of _____ code or another.
JPEG
CSS
HTML
A ___________ is an icon, graphic, or text that links to another file or object. These are what allow web pages to connect to other web pages
hyperlink
HTML Tags
browser
<br>
A ________ is a software program to present and explore content on the World Wide Web.
Word Processor
Browser
HTTP
attribute
A __________ is a protection for any published work that helps to prevent that work from being used without prior authorization.
Firewall
HTML
Copyright
CSS Declaration
_______ is a language used to describe reusable styles for presenting documents written in a markup language.
HTTP
TCP
HTML
CSS
The _______ _______is used to change the appearance and position of various elements on a web page.
<style> tag
<img> tag
URL link
<p> tag
The ______ ______ is an inline element used to designate a holding space for linked images.
<br> tag
<h1> tag
<img> tag
<ol> tag
____________ is a term used to describe how page elements are placed on the screen. For example, elements can be positioned left, right, or center.
Attribute
Style
Alignment
Properties
The _____ ______ is a block element used to designate a list that is either numbered or alphabetical.
<tr> tag
<ol> tag
<ul> tag
<td> tag
The ______ ______ is a block element used to designate a list that is bulleted.
<ul> tag
<h2> tag
<hr> tag
<td> tag
____ ____ is an inline HTML element that defines a hyperlink.
<b> tag
<p> tag
<a> tag
<url> tag
RGB
Short for router graphics bitmap, RGB is a process for creating vector graphics.
Short for red, gray, black, RGB is a method of monitoring color on a server website.
Short for random gigabyte burnout, RGB is process used to maintain data on a computer screen.
Short for red, green, blue, RGB is a method of creating colors from the colors of red, green, and blue.
Within an HTML tag, an _________ dictates certain aspects of an element. It is made up of a name and value pair.
attribute
properties
color
class
<h1> to <h6> tags
are styling tags used to designate HTML table attributes.
are line elements for creating different sizes of lines.
are block elements used to designate headings of both different sizes and importance.
are color elements used to style a CSS page.
<p> tag
is a block element used to designate a paragraph.
is an inline element used to create a new page.
is a block element used to post a picture on a web page.
is an inline element used to style with the color purple.
is an inline element used to create a single line break in a document.
<b> tag
<tr> tag
<br> tag
<ol> tag
an _____ _____ stays in the same line as the code that surrounds the text.
block element
inline element
HTML tags
alt attribute
a _____ _____ is any element that starts a new line (e.g., paragraph) and uses the full width of the page or container.
inline element
img href
CSS ID
block element
In the code below, what tags do you need to add to make the list a numbered list?
<ol> </ol>
<ul> </ul>
Which is NOT a valid CSS propert
font-family
color
text-size
text-align
What is the opening tag for a paragraph?
<p>
</p>
<para>
</para>
Which heading tag will give you the smallest text size?
<h1> </h1>
<h3> </h3>
<h6> </h6>
<h10> </h10>
What correction needs to be made in the code
line 13 - <p> </p> tags needed
line 13 - <li> </li> tags needed
line 13 - <h6> </h6> tags needed
line 13 <par> </par> tags needed
All of the webpage content goes in between the...
<head> </head>
<h1> </p>
<ol> </ol>
<body> </body>
What is the function of the div tag?
To define a section of an HTML page
To group a block of elements together to format them with CSS
To efficiently apply the same style to several different elements
All of the above
Which of the following selects all p tags with the class alert and makes them red?
p.alert {
color: red;
}
p {
.alert {
color:red;
}
}
.alert p{
color: red;
}
p alert{
color: red;
}
The Inspector would be a useful tool for which of the following tasks?
Starting to write the HTML and CSS based on a design
Testing what small CSS changes will do to the site presentation
Finalizing changes made to the styling of the website
All of the above
What symbol should you use to target a class name in css?
#
()
.
class
What symbol should you use to target an id in css?
.
+
id
#
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">
