Font size
Worksheetsweb development
Total questions: 20
Worksheet time: 10mins
A collection of interlinked web pages on the World Wide Web
website
content
footprint
heading
HTML stands for
Hypretext Markup Language
Hypertext Media Language
Hyper Text Marker Line
Hypertext Mangement List
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
The difference between a beginning tag and ending tag is the...
/
\
;
:
A web document must have which of the following tags?(multiple choice qn)
<html>
<body>
<p>
<img>
<head>
To "style" a font in a specific type, which "property" would I use?
font-style
font-type
font-family
font-"name of font"
The structure of an html document will fall in between which tags?
<body></body>
<head></head>
<title></title>
<p></p>
Change the border size of the body or image
border-style
border-width
border-color
width
sets the element to one side of the page
margin
width
float
height
sets the color of words in a paragraph
h1 {
color: pink;
}
img {
color: pink;
}
body {
color: pink;
}
p {
color: pink;
}
What does a class do?
adds color to words
adds style to specific elements
adds style to a whole page
adds a lot more work
Select the rule set to make all the text in your web page blue and centered.
p {
color: blue;
}
body {
text-align: left;
color: blue;
}
p {
text-align: center;
color: blue;
}
body {
text-align: center;
color: blue;
}
Which selector will change the font of the text?
font-size
text-align
font-famiy
text-decoration
Which rule set would change the font size to 24?
font-size: 24
size: 24;
font-size: 24;
font size: 24;
Which tag is used to add an image?
<image>
<img>
<<img>>
</image>
What symbol should you use to target an id in css?
.
+
id
#
What is the correct syntax to change the background color with css?
background-color: purple;
background-color = "purple";
backgroundcolor=orange
change-background-color: purple
What is missing from this HTML skeleton?
<!DOCTYPE html>
<html>
<body>
</body>
</html>
<head></head>
<div></div>
<img></img>
<head>
