NEW
Font size
WorksheetsSDA Review Questions 51 - 60
Total questions: 10
Worksheet time: 5mins
Which code should a web developer use to attach an external CSS Style Sheet to an HTML webpage?
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel=stylesheet type=css href=styles.css>
<style ref=stylesheet type=text/css href=syb/syb.css>
<style ref="stylesheet" type="css" href="styles.css">
What is the order of precedence for CSS?
External styles overrides all other styles.
External styles override embedded styles.
Inline styles override all other styles.
Embedded styles override inline styles.
Which code should be used to center a paragraph of text?
<p style="text-align: center">This is centered text.</p>
<p "align: center">This is centered text.</p>
<p style: text-align ="center">This is centered text.</p>
<p text-align="center">This is centered text.</p>
Nu Yin has wrote the following HTML and CSS code for his website.
<header>
<h1>HiLo Store</h1>
<img src="images/logo.jpg" width="100" height="75" alt="HiLo Store Logo" />
</header>
header {
background: #333333 url(header_bg.gif) repeat-x top left;
height: 100px;
width: 100%;
}
header img {
float: left;
}
Where on the webpage does background display?
At the left of the header
At the right of the header
At the top, center of the header
At the top, left of the header
Alejandra is creating a style sheet to format the pages on her company's website. One section will have a light green background with black text. Which hexadecimal reference will Angelica use to specify the text color for this portion of the webpage?
#000000
#FFFFFF
255,255,255
white
You are writing the CSS to format your web pages. For the page background color you enter the hexadecimal code #0000FF. What color will the page background be?
blue
black
green
red
Julie is redesigning the website for Kimber's Dance Studio. She plans to set her styles using RGB colors and wants to use pure green. What color code will she use?
0, 255, 0
#00FF00
0, 0, 255
#00FFFF
Which tool is used to validate CSS?
http://www.cynthiasays.com
http://validator.w3.org
http://jigsaw.w3.org
http://www.vischeck.com
What is the name for the set of standards created by the Web Accessibility Initiative (WAI) that promote accessibility for all web users, including those with disabilities?
Section 508 of the Rehabilitation Act
Web Content Accessibility Guidelines
Americans with Disabilities Act
User Agent Accessibility Guidelines
Kazuki was asked to design and develop a website whose target audience will primarily be elderly. What should he do to ensure that the website is accessible?
Comply with WAI's Web Content Accessibility Guidelines.
Comply with the latest HTML standards.
Comply with Section 508 of the Rehabilitation Act.
Comply with the latest ICANN standards.
