NEW
Font size
WorksheetsCode Next code quiz
Total questions: 11
Worksheet time: 6mins
Which principle? "website design must ensure all users have equal access to information"
Navigation
clarity
typography
accessibility
Which principle? "the type of font used is important - fonts should be clear and legible"
simplicity
clarity
accessibility
typography
Change the border size of the body or image
border-style
border-width
border-color
width
sets the color of words in a paragraph
h1 {
color: pink;
}
img {
color: pink;
}
body {
color: pink;
}
p {
color: pink;
}
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;
}
This coding is used to create a paragraph:
<pr></pr>
<p></p>
<para></para>
<par></par>
Which of the following creates the smallest header?
<H2><./H2>
<H3></H3>
<H4></H4>
<H6></H6>
The universally accepted name for the first page on a website is
home.html
index.html
first.html
Variable names are case-sensitive
True
False
A variable _____.
always starts at 0
reserves a place in the computer’s memory to store information.
can only hold integers or floats.
cannot be changed
