How many rows and columns does this table have?
| A | B |
| C | D |
There are two
Which tag is used to create a link in HTML?
Which attribute of the tag holds the address of the page to open?
The href attribute gives the address of the page to open.
In About Us, which part is displayed on the web page as the clickable link?
The text between the opening and closing tags is what the user sees and clicks.
Which code creates a link with the text Home that opens home.html?
The href gives the page to open and the text between the tags is the link text.
What happens when a user clicks on the text inside an tag that has an href attribute?
A link takes the user to the address stored in href.
Why is a web page written in Notepad saved with the .html extension?
The .html extension tells the computer to open the file as a web page.
A student has saved an HTML file. Which software should be used to see the finished web page?
A web browser reads the HTML file and displays the page.
What will the browser display for this code?
Hello
Welcome
shows a large heading and
shows a paragraph.
Find the mistake in this code:
| Name | Age |
. What is missing?
The last cell is opened with
.
What does CSS stand for?
CSS stands for Cascading Style Sheets.
What is CSS mainly used for in web design?
CSS controls how a web page looks, such as colours, fonts and borders.
In the CSS rule p { color: red; }, what is p called?
The selector says which element is styled; color is the property and red is the value.
Which is the correct CSS rule to make all paragraphs blue?
A rule has a selector, then curly braces holding property: value; pairs.
Which CSS property is used to give a table cell a background colour?
background-color fills the background of an element; color changes the text.
Which CSS property draws a line around table cells?
The border property draws a line around an element.
What does the CSS declaration border-collapse: collapse do to a table?
Without it, each cell keeps its own border; collapse merges them.
Which CSS property adds space between the cell content and the cell border?
Padding is the space inside a cell around its content.
Which CSS rule gives every table data cell a black one-pixel border?
The border property takes the width, style and colour, for example 1px solid black.
Which CSS rule gives table headings a yellow background?
Background colour is set with background-color; color would only change the text.
🎯 How to get the most out of these questions
- Attempt each question before revealing the answer.
- Read the explanation even when you answered correctly — it reinforces the concept.
- Note down any question you got wrong and revisit it the next day.
- Use the pagination below the list to work through every page — do not stop at page 1.
📌 MCQs — FAQs
Are the answers in this section verified?
Yes — every answer on this page has been verified. MCQs also include explanations where available.
Can I print these questions?
Yes — use your browser's print option (Ctrl+P / Cmd+P) to print or save the page as PDF.
How often are questions updated?
New questions are added regularly. If a paper pattern changes, existing questions are reviewed and updated.