Get the most accurate MSBSHSE Solutions for Class 11 Information Technology Set 2 Web Designing HTML 5 here. Updated for the 2026-27 academic session, these solutions are based on the latest MSBSHSE textbooks for Class 11 Information Technology. Our expert-created answers for Class 11 Information Technology are available for free download in PDF format.
Detailed Set 2 Web Designing HTML 5 MSBSHSE Solutions for Class 11 Information Technology
For Class 11 students, solving MSBSHSE textbook questions is the most effective way to build a strong conceptual foundation. Our Class 11 Information Technology solutions follow a detailed, step-by-step approach to ensure you understand the logic behind every answer. Practicing these Set 2 Web Designing HTML 5 solutions will improve your exam performance.
Class 11 Information Technology Set 2 Web Designing HTML 5 MSBSHSE Solutions PDF
Class 11 Information Technology Practicals Skill Set 2 Exercise Solutions
Question. SOP 1: Write a program using HTML with the following specifications.
• The background colour should be green.
• The text colour should be red.
• The heading should be as large in size as ‘My First Web Page’.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>SOP 1</title>
</head>
<body style="background-color: green; color: red;">
<h1>My First Web Page</h1>
</body>
</html>
In simple words: This code creates a basic webpage where the background is set to green, the text is colored red, and the main heading is displayed in the largest heading size using the h1 tag.
🎯 Exam Tip: Always use the style attribute in the body tag to apply background and text colors easily, and remember that h1 is the largest heading tag in HTML.
Question 1. Create a web page with the following specifications:
• Display a horizontal line after the heading.
• Display your name in Bold, address in Italics, and standard as 11th.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>sop1</title>
</head>
<body bgcolor=green text= red>
<h1> My First Web Page </h1>
<hr>
<b> Reliable Publications</b>
<br>
<i> Chira bazar,Charni road,Mumbai</i>
<br>
Standard 11th.
</body>
</html>
This basic HTML structure uses standard formatting tags to style text and set background colors.
In simple words: This HTML code creates a simple web page with a green background and red text, displaying a heading, a horizontal line, bold name, italicized address, and standard text.
🎯 Exam Tip: Always remember to close all opened tags like <b>, <i>, and <html> to ensure your web page renders correctly in all browsers.
SOP 2: Create a Web Page With, Following Specifications.
Question. Write an HTML code to display the following:
• Image of any scientist with an alternate text as his name.
• Create a paragraph related to the information of that scientist.
• Create a table of his/her inventions.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>sop2</title>
</head>
<body>
<img src="Albert Einstein.jpg" alt="Albert Einstein">
<br>
<p>
Albert Einstein was a German-born theoretical physicist who developed the theory of relativity,<br> one of the two pillars of modern physics. His groundbreaking contributions revolutionized our understanding of space, time, and gravity. His work is also known for its influence on the philosophy of science.
</p>
<table border="5" bordercolor="pink">
<tr>
<th> Sr no.</th>
<th> Invention </th>
<th> Year</th>
</tr>
<tr>
<td>1</td>
<td>Quantum Theory of Light </td>
<td>1905</td>
</tr>
<tr>
<td>2</td>
<td>Theory of Relativity</td>
<td>1907</td>
</tr>
</table>
</body>
</html>
In simple words: This HTML code creates a webpage about Albert Einstein. It displays his picture, a short paragraph about his life, and a neat table listing two of his major scientific inventions and their years.
🎯 Exam Tip: Always remember to use the 'alt' attribute in the image tag to provide alternative text, as it is essential for web accessibility and scoring full marks.
Question SOP 3. Create a webpage with the following specifications:
• Display heading ‘Application Form’ in the highest heading with center alignment.
• Accept name, standard 11th or 12th with only one selection choice.
• Submit the form.
Answer:
<!DOCTYPE html>
<html>
<head> <title> sop3</title>
</head>
<body>
<h1 align=center> Application Form </h1>
<form>
Enter Name:<input type=text name=t1>
<br><br>
Standard:<br>
<input type="radio" name=r1>11th<br>
<input type="radio" name=r1>12th<br>
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
This code successfully creates a basic HTML form with text input, radio buttons, and a submit button.
In simple words: This HTML code creates a simple online form where you can type your name, select either 11th or 12th standard using a single-choice radio button, and click submit.
🎯 Exam Tip: Always use the same 'name' attribute (like name="r1") for radio buttons in a group so that only one option can be selected at a time.
Question. SOP 4: Write a program using HTML with the following specification.
A webpage with details about a class with a total number of students-100, (Boys - 50), Girls - 50 in tabular form.
Example:
| Number of Students | Boys | Girls |
|---|---|---|
| 100 | 50 | 50 |
| STD - XI Stream - Science Div - A |
Answer:
<!DOCTYPE html>
<html>
<head>
<title>New Page 1</title>
</head>
<body>
<center>
<table border="1" width="69%">
<tr bgcolor="pink">
<td>Number of Students</td>
<td>Boys</td>
<td>Girls</td>
</tr>
<tr bgcolor="lightgreen">
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
<br />
<a href="Demo.html">
<table border="1">
<tr>
<td>
<strong>STD - XI</strong><br />
<strong>Stream - Science</strong><br />
Div - A
</td>
</tr>
</table>
</a>
</center>
</body>
</html>In simple words: This HTML code creates a table to display student statistics and wraps a second table inside an anchor tag to act as a clickable link to another page.
🎯 Exam Tip: When linking elements, wrapping an entire table inside an anchor tag <a> is a valid way to make the entire block clickable as a link button.
Question 1. Write an HTML code to create a table displaying student data with headers "Number of Students", "Boy", and "Girls" as shown in the preview.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Student Count</title>
</head>
<body>
<table border="1">
<tr>
<th>Number of Students</th>
<th>Boy</th>
<th>Girls</th>
</tr>
<tr>
<td>100</td>
<td>50</td>
<td>50</td>
</tr>
</table>
</body>
</html>
In simple words: This code creates a structured table on a webpage with three columns to display the count of students, boys, and girls.
🎯 Exam Tip: Use the <th> tag for table headers to automatically make the text bold and centered inside the header cells.
Question 2. Write an HTML code to create a centered table containing a hyperlink to "sop4.html" displaying class details.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>the heading</title>
</head>
<body>
<header>
<center>
<table border="1" align="center">
<tr align="center">
<td><a href="sop4.html">STD – XI</a>
<br>Stream – Science<br>
Div – A<br></td>
</tr>
</table>
</center>
</header>
</body>
</html>
In simple words: This code displays a centered table cell containing a clickable link that takes you to another page called "sop4.html" when clicked.
🎯 Exam Tip: Always ensure that attributes like href and border use standard straight quotation marks instead of curly smart quotes to prevent code execution errors.
Information Technology 11th Std Skill Oriented Practicals (SOP)
- 11th Information Technology Practicals Skill Set 1 Practical Problems
- 11th Information Technology Practicals Skill Set 2 Practical Problems
- 11th Information Technology Practicals Skill Set 3 Practical Problems
- 11th Information Technology Practicals Skill Set 4 Practical Problems
- 11th Information Technology Practicals Skill Set 5 Practical Problems
- 11th Information Technology Practicals Skill Set 6 Practical Problems
Free study material for Information Technology
MSBSHSE Solutions Class 11 Information Technology Set 2 Web Designing HTML 5
Students can now access the MSBSHSE Solutions for Set 2 Web Designing HTML 5 prepared by teachers on our website. These solutions cover all questions in exercise in your Class 11 Information Technology textbook. Each answer is updated based on the current academic session as per the latest MSBSHSE syllabus.
Detailed Explanations for Set 2 Web Designing HTML 5
Our expert teachers have provided step-by-step explanations for all the difficult questions in the Class 11 Information Technology chapter. Along with the final answers, we have also explained the concept behind it to help you build stronger understanding of each topic. This will be really helpful for Class 11 students who want to understand both theoretical and practical questions. By studying these MSBSHSE Questions and Answers your basic concepts will improve a lot.
Benefits of using Information Technology Class 11 Solved Papers
Using our Information Technology solutions regularly students will be able to improve their logical thinking and problem-solving speed. These Class 11 solutions are a guide for self-study and homework assistance. Along with the chapter-wise solutions, you should also refer to our Revision Notes and Sample Papers for Set 2 Web Designing HTML 5 to get a complete preparation experience.
FAQs
The complete and updated Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions is available for free on StudiesToday.com. These solutions for Class 11 Information Technology are as per latest MSBSHSE curriculum.
Yes, our experts have revised the Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions as per 2026 exam pattern. All textbook exercises have been solved and have added explanation about how the Information Technology concepts are applied in case-study and assertion-reasoning questions.
Toppers recommend using MSBSHSE language because MSBSHSE marking schemes are strictly based on textbook definitions. Our Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions will help students to get full marks in the theory paper.
Yes, we provide bilingual support for Class 11 Information Technology. You can access Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions in both English and Hindi medium.
Yes, you can download the entire Maharashtra Board Class 11 Information Technology Set 2 Web Designing HTML 5 Solutions in printable PDF format for offline study on any device.