WorksheetsWeb Development Revision 3
Total questions: 15
Worksheet time: 34mins
What CSS property configures empty space between the content of the HTML element (typically text) and the border?
Which CSS property configures the type of line displayed in the border?
border-width
border-style
border-top
border-bottom
What CSS property is used to configure a background image in a web page?
Which attribute specifies text that is available to browsers and other user agents that do not support graphics?
alt
text
src
none of the above
Which of the following creates an image link to the index.html page when the home.gif graphic is clicked?
<a href="index.html" src="home.gif"
alt="Home"></a>
<a href="index.html"> <img src="home.gif" alt="Home"></a>
<img src="home.gif" href="index.html" alt="Home">
<a href="index.html"> <img href="home.gif" alt="Home"></a>
Which of the following associates a web page with an external style sheet?
<style rel="external" href="style.css">
<style src="style.css">
<link rel="stylesheet"
href="style.css">
<link rel="stylesheet" src="style.css">
What is the CSS property used to set the background color of a web page?
What is the CSS property used to configures
the boldness of the text?
Which of the following is the correct for capitalizing the allword in a sentence?
font-style:caps;
text-transform:uppercase;
text-transform:capitalize;
text-transform:initcap;
Write CSS to configure a class called news with red text, large font, and Arial or a sans-serif font?
Which of the following can be a CSS selector?
an HTML element name
a class name
an id name
all of the above
What property and value are used to configure an unordered list item with a none list marker?
List pseudo-classes for a hyperlink in order.
Write CSS to configures the list that eliminates the underline on the hyperlinks within the nav element.
Write CSS to configures the h1 element to have 5 pixels of padding and blue text.
