Font size
WorksheetsIntro to Web Development (Pre-Test)
Total questions: 25
Worksheet time: 13mins
The structure of a web page is primarily created with which of the following?
HTML
CSS
Javascript
C++
Which web development tools would I use if I wanted my web page to have specific colors and style?
HTML
CSS
Javascript
PHP
To "style" a font in a specific type, which "property" would I use?
font-style
font-type
font-family
font-"name of font"
A tag pair assigns meaning to a web page ______, which is a specific component of the page, such as a paragraph or a heading.
element
attribute
object
property
What language adds interactive features to a website?
HTML
CSS
JavaScript
PHP
What does HTML stand for?
Hypertext Making Language
Hyper Transfer Markup Language
Hypertext Markup Language
Hyper Transfer Making Language
All HTML Tags are enclosed in ____________
# and #
? and !
{ and }
< and >
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
HTML consists of two (2) sections. What are those sections?
head and body
html and head
body and foot
foot and head
What is the keyword that we use to specify variable in JavaScript?
variable
var
int
str
Which of the following CSS ID Selector ‘section’ set the background color to green?
#section {color: green}
#section{background-color:green}
.section{background-color:green}
.section{color:green}
Which of the following is used for closing an HTML tag?
Backward slash
Hyphen
Period
Forward slash
<h10> is the largest header in HTML.
True
False
Which one is correct HTML page structure ?
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<head>
<title></title>
</head>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<body>
</body>
<title></title>
</head>
</html>
<head>
<title></title>
</head>
<body>
</body>
Which HTML header tag is bigger ?
<h4>
<h6>
<h1>
<h+1>
Which one is the universal selector in CSS ?
*
#
.
all of the above
Which one is the ID selector in CSS ?
*
#
.
all of the above
Which one is correct?
A web document must have which of the following tags? SELECT 3
<html>
<body>
<p>
<img>
<head>
This <!-- --> in your HTML does which of the following when creating a web document?
Allows you to provide comments
Helps you debug your problematic code
Will bypass code that falls in between these symbols <!-- -->
Will provide the proper indentation for your code
Look at the HTML code below and predict how the headings will be displayed.
<h3> Eggs </h3>
<h1> Bacon </h1>
<h6> Waffles </h6>
Look at the list above and predict the HTML code you would use to display it correctly. Choose from the following answers.
sets the color of words in a paragraph
h1 {
color: pink;
}
img {
color: pink;
}
body {
color: pink;
}
p {
color: pink;
}
A tag used to insert an image.
<img>
<i>
<m>
<image>
What is the correct HTML Tag for Head?
</head>
<head/>
<head></head>
<?head></head>
