Read and download the CBSE Class 12 Informatics Practices HTML II Lists Tables and Forms Assignment for the 2025-26 academic session. We have provided comprehensive Class 12 Informatics Practices school assignments that have important solved questions and answers for Html II Lists Tables And Forms. These resources have been carefuly prepared by expert teachers as per the latest NCERT, CBSE, and KVS syllabus guidelines.
Solved Assignment for Class 12 Informatics Practices Html II Lists Tables And Forms
Practicing these Class 12 Informatics Practices problems daily is must to improve your conceptual understanding and score better marks in school examinations. These printable assignments are a perfect assessment tool for Html II Lists Tables And Forms, covering both basic and advanced level questions to help you get more marks in exams.
Html II Lists Tables And Forms Class 12 Solved Questions and Answers
Brief Summary of the Chapter:
Making information more accessible is the single most important quality of HTML. The language’s excellent collection of text style, formatting tools, and links tools help you organize your information into documents that readers quickly understand, scan, and extract.
Beyond embellishing your text width specialized text a tag, HTML also provides a rich set of tools that help you organize content into formatted lists. Apart from lists, you can insert images into your documents to enhance its visual approach. Also many documents can be linked together using
HTML’s sophisticated linking tools.
Also, there are situations where you need to represent tabular data(data in rows and columns).
For this, HML provides Table tags.
Key Points of the Chapter:
• The numbered/ordered list <OL> tag is used to indicate a list item as contained in an ordered
or numbered form.
• An ordered list is also a list of items. The list items are marked with numbers.
• Bulleted/unordered list <UL> tag is used to indicate a list item as contained in an unordered or
bulleted form.
• LI list tag is used to denote the beginning of each new list item.
• The TYPE attribute is used to change the bulleted symbol in a list. The attribute may have a
value of circle, disc, or square. For example, <UL TYPE=disk>.
• The list items are marked with bullets (typically small black circles).
• The START attribute is used to change the beginning value of an ordered list. Normally, the
ordered list starts with 1. For example, <OL START = 10>.
• The IMG SCR tag specifies an image to be displayed in a Web page. This is an empty element,
which is coded in HTML document. It has attributes like : SRC, ALIGN, BORDER, HEIGHT,
WIDTH and ALT.
• A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with
the <td> tag).\ The letters td stands for “table data”, which is the content of a data cell.
• Links between Web pages is known as hyperlink.
• The anchor tag <A> marks the text as hypertext link.
• The HREF attribute specifies the destination of a link.
• The HREF or the name attribute must be present in the <A> tag.
• A URL, basically, is a way to tell your web browser (or other program) where to look for
something. If you want to make a hypertext link to a page. You will need its URL.
• HREF is an attribute for the <A> tag, which is displayed in a browser, the work Text
describing link would appear underlined and in another order to indicate that clicking that text
initiates the hypertext link.
Solved Questions:
1. What is an unordered list?
Ans: Bulleted/unordered list <UL> tag is used to indicate a list item as contained in an unordered or bulleted form.
2. What is ordered list?
Ans: The numbered/ordered list <OL> tag is used to indicate a list item as contained in an ordered or numbered form.
3. What is table? What are the basic commands for creating a table?
Ans: Table is a collection of rows and column.
Followings are important tags
<Table> :- used to give identification to a table
<TH> :- To provide headings in a table
<TR>:- (Table Row) to create Row in a table
<TD> :- (Table Data) to create columns in a row
4. What do you understand by ALINK? Explain with an example.
Ans: Links which are currently being visited in web page are known as Active Links (ALINK).
Example:
<BODY TEXT = “#FFFFFF” ALINK=”#FF0000”>
<A HREF=”www.kvsangathan.nic.in”> Kendriya Vidyalaya Sangathan </A><BR>
<A HREF = www.cbse.nic.in> Central Board of Secondary Education </A>
</BODY>
5. What is FORM tag? Explain with example.
Ans: To create or use forms in a web page <FORM> tag is used. Form is means to collect data from the site visitor. It is done with the help of controls that collect data and send it over.
Example:
<FORM method = “POST” action=submitform.asp>
6. What is INPUT tag? Explain with example.
Ans: Text boxes are single line text input controls that are created using <INPUT> tag whose TYPE
attribute has a value as “Text”.
Example:
<FORM method = “POST” action=submitform.asp>
First Name:
Page 72 of 106
<INPUT TYPE=”text” NAME = “fname”/>
<BR>
Last Name:
<INPUT TYPE=”text” NAME = “lname” />
</FORM>
7. What is the purpose of select tag?
Ans: <SELECT> tag is used to create a drop down box in which many options are available; user can make selection from the list.
Example:
<SELECT name = “stream”>
<OPTION value=”Science”> Science</OPTION>
<OPTION value=”Commerce”> Commerce </OPTION>
<option value=”Humanities”> Humanities </OPTION>
</SELECT>
Unsolved Questions:
1. What types of list are supported by HTML?
2. Which three tags let you create the definition list?
3. Which three tags let you create the (i) un numbered lists? (ii) numbered lists?
4. What is a table? Which tag is used to create tables in HTML?
5. Which attributes are used to give border to a table?
6. Which attribute lets you control the display of select border sides of a table?
7. Which attributes is used to control the inside table border?
8. How is spacing in cells of table controlled?
9. What is the role of ALIGN attribute of <TABLE> tag?
10. How can you specify following in table?
(a) background image (b) background colour.
(c) Table height. (d) Table width.
11. What tag is used to specify
(i) Table data (ii) Table header (iii) Table row?
12. Name the attributes used for following?
(i) Setting the cell width. (iii) Setting cells background colour.
(ii) Changing the cell span. (iv) Aligning cell contents vertically.
13. What for are <TH> and <TR> tags used?
14. What are forms? Which methods and actions are commonly used with Forms?
15. Name different control types supported by HTML forms.
16. Write the tags to define the following :
(i) A text box (ii) A text area (iii) A radio button
(iv) A check box (v) A Password box (vi) A Pop up box
(vii) Submit button (viii) A label.
17. How will you nest an un order list inside an ordered list?
18. How would you indent a single word and put a square bullet in front of it?
19. Write code to produce following HTML tables?
1 3
4
2 5
21. Write HTML code to produce these controls
(i) a text box (ii) a text area with 10 rows and 30 columns
(iii) A password text box (iv) A pop up box to choose class from it.
| CBSE Class 12 Informatics Practices More About Classes And Libraries Assignment |
| CBSE Class 12 Informatics Practices Querying and SQL Functions Assignment |
| CBSE Class 12 Informatics Practices Data Handling using Pandas II Assignment |
| CBSE Class 12 Informatics Practices Internet and Web Assignment |
| CBSE Class 12 Informatics Practices Societal Impacts Assignment Set A |
| CBSE Class 12 Informatics Practices Societal Impacts Assignment Set B |
| CBSE Class 12 Informatics Practices Concept Of Inheritance In Java |
| CBSE Class 12 Informatics Practices Database Concepts Assignment |
| CBSE Class 12 Informatics Practices Database Query using Sql |
| CBSE Class 12 Informatics Practices Database Transactions Assignment |
| CBSE Class 12 Informatics Practices Extensible Markup Language Assignment |
| CBSE Class 12 Informatics Practices Free And Open Source Software Assignment |
| CBSE Class 12 Informatics Practices GUI Dialogs And Tables Assignment |
| CBSE Class 12 Informatics Practices HTML I Basic HTML Elements Assignment |
| CBSE Class 12 Informatics Practices HTML II Lists Tables and Forms Assignment |
| CBSE Class 12 Informatics Practices Introduction to Computer Networks Assignment |
| CBSE Class 12 Informatics Practices Java Database Connectivity To MySQL Assignment |
| CBSE Class 12 Informatics Practices Java GUI Programming Revision Tour Assignment |
| CBSE Class 12 Informatics Practices Networking and open standards Assignment |
| CBSE Class 12 Informatics Practices Programming Fundamentals Assignment |
| CBSE Class 12 Informatics Practices More on SQL Grouping Records and Table Joins Assignment |
| CBSE Class 12 Informatics Practices Web Application Development Assignment |
Important Practice Resources for Class 12 Informatics Practices
CBSE Class 12 Informatics Practices Html II Lists Tables And Forms Assignment
Access the latest Html II Lists Tables And Forms assignments designed as per the current CBSE syllabus for Class 12. We have included all question types, including MCQs, short answer questions, and long-form problems relating to Html II Lists Tables And Forms. You can easily download these assignments in PDF format for free. Our expert teachers have carefully looked at previous year exam patterns and have made sure that these questions help you prepare properly for your upcoming school tests.
Benefits of solving Assignments for Html II Lists Tables And Forms
Practicing these Class 12 Informatics Practices assignments has many advantages for you:
- Better Exam Scores: Regular practice will help you to understand Html II Lists Tables And Forms properly and you will be able to answer exam questions correctly.
- Latest Exam Pattern: All questions are aligned as per the latest CBSE sample papers and marking schemes.
- Huge Variety of Questions: These Html II Lists Tables And Forms sets include Case Studies, objective questions, and various descriptive problems with answers.
- Time Management: Solving these Html II Lists Tables And Forms test papers daily will improve your speed and accuracy.
How to solve Informatics Practices Html II Lists Tables And Forms Assignments effectively?
- Read the Chapter First: Start with the NCERT book for Class 12 Informatics Practices before attempting the assignment.
- Self-Assessment: Try solving the Html II Lists Tables And Forms questions by yourself and then check the solutions provided by us.
- Use Supporting Material: Refer to our Revision Notes and Class 12 worksheets if you get stuck on any topic.
- Track Mistakes: Maintain a notebook for tricky concepts and revise them using our online MCQ tests.
Best Practices for Class 12 Informatics Practices Preparation
For the best results, solve one assignment for Html II Lists Tables And Forms on daily basis. Using a timer while practicing will further improve your problem-solving skills and prepare you for the actual CBSE exam.
You can download free Pdf assignments for CBSE Class 12 Informatics Practices Html II Lists Tables And Forms from StudiesToday.com
All topics given in Html II Lists Tables And Forms Informatics Practices Class 12 Book for the current academic year have been covered in the given assignment
No, all Printable Assignments for Html II Lists Tables And Forms Class 12 Informatics Practices have been given for free and can be downloaded in Pdf format
Latest syllabus issued for current academic year by CBSE has been used to design assignments for Html II Lists Tables And Forms Class 12
Yes, we have provided detailed answers for all questions given in assignments for Html II Lists Tables And Forms Class 12 Informatics Practices
