0 of 30 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 30 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
What do ‘Web for all’ in the Design Principles declared in the W3C mission statement imply?
How do you create an anchor and create a link to it in the same HTML page ?
What is the CSS property ‘float’ intended for?
All valid CSS is also valid SCSS
Which HTML tag is dedicated to mark the sidebar?
Which HTML tag creates a horizontal rule?
How is a comment written in HTML?
What is the purpose of the ‘alt’ attribute in the <img> tag?
What is a pseudo class in HTML?
What is a pseudo element in HTML?
p::first-letter in this example ‘first-letter’ is:
{ position: fixed } in this case the position of the element is:
What is the viewport of a webpage?
Which selector is more specific than others in CSS?
Which of the following tag is used to embed CSS in html page?
Which of the following is the correct syntax to link an external style sheet in the HTML file?
Which of the following is not the property of the CSS box model?
Which of the following will just hide the element but it will still occupy space on the web page?
When submitting sensitive content using a form, which of the following methods should be used?
Which of the following form methods is the least secure?
Which of the following elements are ‘inline’ by default?
Which of the following elements are ‘block’ by default?
Which value for target will make the link open in a new tab?
Which of the following attributes is required for <a>?
Do iframes automatically set height and width based on the content?
Which combinator can be used to target the button adjacent to an H1?
Which of the following have the highest specificity?
Which of the following have the highest specificity?
In the following example, what would be the color of the heading “Hello World”:
<h1 class=”heading” id=”my-heading” style=”color: cyan;”>
Hello World
</h1>
<style>
h1 {
color: “red”;
}
h1#my-heading {
color: “blue”;
}
h1#my-heading.heading {
color: “green”;
}
<style/>
Which rule can be used to handle different screen sizes in CSS?