Report File: At least 10 HTML pages (15) MCQs Quiz | Class 10

This quiz is designed for **Class X**, covering **Computer Applications (Code 165)**, specifically focusing on the **Practicals (Assessment)** unit. The topic is **Report File: At least 10 HTML pages (15) MCQs Quiz | Class 10**, which assesses your ability to create a **portfolio of HTML pages covering syllabus skills**. Test your knowledge, submit your answers, and download a detailed PDF of your performance!

Mastering HTML for Your Class 10 Portfolio

Creating a portfolio of HTML pages is a crucial practical assessment for Class 10 Computer Applications. This portfolio demonstrates your foundational understanding and practical skills in designing web pages using various HTML elements. It’s not just about syntax; it’s about structuring content effectively and presenting information clearly, adhering to syllabus requirements.

Key Concepts for Your HTML Portfolio:

A well-rounded HTML portfolio should cover a variety of elements and functionalities taught in Class 10. Here are the core areas:

  • Basic HTML Document Structure: Every HTML page starts with <!DOCTYPE html>, followed by <html>, <head> (for metadata like <title>), and <body> (for visible content).
  • Text Formatting Tags:
    • Headings: <h1> to <h6> for structuring content.
    • Paragraphs: <p> for blocks of text.
    • Line Breaks and Horizontal Rules: <br> for a new line, <hr> for a thematic break.
    • Emphasis: <b> (bold), <i> (italic), <u> (underline), <strong> (strong importance), <em> (emphasized text), <sup> (superscript), <sub> (subscript).
  • Lists: Essential for organizing information.
    • Unordered Lists: <ul> with <li> items (e.g., for bullet points).
    • Ordered Lists: <ol> with <li> items (e.g., for numbered steps), often using the type attribute (1, A, a, I, i).
  • Hyperlinks: The backbone of the web.
    • Anchor Tag: <a> to create links.
    • Attributes: href specifies the destination URL, target="_blank" opens link in a new tab.
    • Types: Absolute URLs (full web address) and Relative URLs (paths within your website).
  • Images: Adding visual content.
    • Image Tag: <img> is a self-closing tag.
    • Attributes: src (path to image), alt (alternative text for accessibility), width, height (for dimensions).
  • Tables: Presenting tabular data.
    • Structure: <table>, <tr> (table row), <th> (table header), <td> (table data).
    • Attributes: border, cellpadding, cellspacing for basic styling.
    • Spanning Cells: colspan (merges cells horizontally), rowspan (merges cells vertically).
  • Forms: Interacting with users.
    • Form Tag: <form> contains form elements.
    • Input Types: <input type="text">, <input type="password">, <input type="radio">, <input type="checkbox">, <input type="submit">, <input type="reset">.
    • Other Elements: <textarea> (multi-line text input), <select> with <option> (dropdown lists), <label> for input fields.
    • Attributes: action (where to send form data), method (GET/POST).
  • Basic CSS Integration: While detailed CSS is for higher classes, you should be aware of basic styling.
    • Inline CSS: Using the style attribute directly in an HTML tag.
    • Internal CSS: Defining styles within a <style> tag in the <head> section.

Quick Revision: Common HTML Tags and Their Uses

Tag Purpose Example Use
<p> Paragraph of text <p>This is a paragraph.</p>
<h1> Main heading <h1>Welcome Page</h1>
<a> Hyperlink <a href="next.html">Next Page</a>
<img> Image <img src="pic.jpg" alt="Description">
<ul> Unordered list <ul><li>Item 1</li></ul>
<ol> Ordered list <ol><li>Step 1</li></ol>
<table> Data table <table><tr><th>Header</th></tr></table>
<form> User input form <form><input type="text"></form>

Practice Questions for Self-Assessment:

  1. Which HTML tag is used to define a definition list?
    • a) <dl>
    • b) <ul>
    • c) <ol>
    • d) <list>

    Answer: a) <dl>

  2. What is the correct HTML element for inserting a line break?
    • a) <break>
    • b) <lb>
    • c) <br>
    • d) <newline>

    Answer: c) <br>

  3. Which attribute is used to specify the column span for a table cell?
    • a) rowspan
    • b) colspan
    • c) cellspan
    • d) span-col

    Answer: b) colspan

  4. To open a hyperlink in a new browser tab, which target attribute value should be used?
    • a) _self
    • b) _parent
    • c) _top
    • d) _blank

    Answer: d) _blank

  5. Which HTML tag is used to create a dropdown list in a form?
    • a) <list>
    • b) <dropdown>
    • c) <select>
    • d) <option>

    Answer: c) <select>

By mastering these elements, you will be well-prepared to create an impressive and functional HTML portfolio for your practical assessment.

Author

  • CBSE Quiz Editorial Team

    Content created and reviewed by the CBSE Quiz Editorial Team based on the latest NCERT textbooks and CBSE syllabus. Our goal is to help students practice concepts clearly, confidently, and exam-ready through well-structured MCQs and revision content.